Skip to content

Commit

Permalink
Add lint job to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Jul 8, 2023
1 parent 8a2b46d commit cab4490
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ on:
- 'README.rst'

jobs:
lint:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref_name }}-lint
cancel-in-progress: true
timeout-minutes: 20
container:
image: ghcr.io/thombashi/python-ci:3.11

steps:
- uses: actions/checkout@v3

- run: make check

unit-test:
timeout-minutes: 20
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit cab4490

Please sign in to comment.