Skip to content

Commit

Permalink
full tests only on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Aug 27, 2023
1 parent eaf0e33 commit b7f3dd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ runs:
shell: bash
run: echo ${{ runner.os }}

- name: Windows specific
- name: Test on Windows
if: ${{ runner.os == 'Windows' }}
shell: bash
run: |
poetry run pytest tests
- name: MacOs specific
- name: Test on macOS
if: ${{ runner.os == 'macOS' }}
shell: bash
run: |
poetry run pytest tests
- name: Install pytest
- name: Test on Linux
if: ${{ runner.os == 'Linux' }}
shell: bash
run: |
Expand Down

0 comments on commit b7f3dd2

Please sign in to comment.