Skip to content

Commit

Permalink
use default shell
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Jan 21, 2025
1 parent 4c8f2bc commit 08b99fc
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -22,18 +25,10 @@ jobs:
auto-update-conda: true
auto-activate-base: false
- name: Install dependencies
shell: bash -l {0}
run: |
make conda-install
run: make conda-install
- name: Lint code with pre-commit
shell: bash -l {0}
run: |
make lint
run: make lint
- name: Install numba_rvsdg with pip
shell: bash -l {0}
run: |
make build
run: make build
- name: Run pytest and print coverage Report
shell: bash -l {0}
run: |
make test
run: make test

0 comments on commit 08b99fc

Please sign in to comment.