Skip to content

Commit

Permalink
progress on GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
habnabit committed Oct 28, 2024
1 parent 6acf799 commit 4b9cfe3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@ on:

jobs:
build-wheels:
uses: habnabit/passacre/.github/workflows/build-wheels.yml@v1

job2:
runs-on: ubuntu-latest
needs: job1
steps:
- run: echo ${{ needs.job1.outputs.firstword }} ${{ needs.job1.outputs.secondword }}
uses: habnabit/passacre/.github/workflows/build-wheels.yml@nearly-1.0

linux:
runs-on: 'ubuntu-latest'
Expand Down Expand Up @@ -45,6 +39,15 @@ jobs:
- name: 'run tests'
run: |
tox
- name: 'locate testing base'
id: 'toxbase'
run: |
>>"$GITHUB_OUTPUT" {
echo 'TOXBASE<<EOF'
tox exec -q -- python3 -c 'import passacre, pathlib; print(pathlib.Path(passacre.__file__).parent.parent)'
echo 'EOF'
}
- run: 'echo ${{ steps.toxbase.outputs.TOXBASE }}'
- uses: 'coverallsapp/github-action@v2.3.4'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'pull_request'

jobs:
lint:
run-rust-tests:
runs-on: '${{ matrix.platform.runner }}'
strategy:
matrix:
Expand Down

0 comments on commit 4b9cfe3

Please sign in to comment.