Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
normanrz committed Sep 26, 2023
1 parent aefbfd3 commit ac883bd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ jobs:
poetry install
- name: Check typing
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version != '3.8' }}
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }}
run: ./typecheck.sh

- name: Check formatting
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version != '3.8' }}
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }}
run: ./format.sh check

- name: Lint code
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version != '3.8' }}
if: ${{ matrix.executors == 'multiprocessing' && matrix.python-version == '3.11' }}
run: ./lint.sh

- name: Run multiprocessing tests
Expand Down Expand Up @@ -160,15 +160,15 @@ jobs:
poetry install --extras all
- name: Check formatting
if: matrix.group == 1
if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }}
run: ./format.sh check

- name: Lint code
if: matrix.group == 1
if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }}
run: ./lint.sh

- name: Check typing
if: matrix.group == 1
if: ${{ matrix.group == 1 && matrix.python-version == '3.11' }}
run: ./typecheck.sh

- name: Python tests
Expand Down

0 comments on commit ac883bd

Please sign in to comment.