Skip to content

Commit

Permalink
simplify lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Jan 10, 2024
1 parent b217549 commit 4223f04
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/lint_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Lint workflow

on:
# Trigger the workflow on push or pull request, but only for the master branch
push:
branches:
- master
Expand All @@ -11,21 +10,15 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: False
matrix:
python: [3.8]
os: [ubuntu-20.04]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '2'
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
python-version: 3.10

- name: Install Tox
run: pip install tox
Expand Down

0 comments on commit 4223f04

Please sign in to comment.