Release v0.1.16 - Python 3.12 Support #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
types: [labeled, opened, synchronize, reopened] | |
workflow_dispatch: | |
merge_group: | |
types: [checks_requested] | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test: | |
name: Test | |
permissions: | |
contents: read | |
pull-requests: write | |
secrets: inherit | |
uses: ./.github/workflows/test.yml | |
build: | |
name: Build | |
permissions: | |
contents: read | |
pull-requests: write | |
secrets: inherit | |
uses: ./.github/workflows/build.yml | |
# Skip for now, until we sort out how to get coverage from the running Cython Tests | |
upload_coverage: | |
needs: [test] | |
name: Upload Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ${{ github.repository }} | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Download Coverage Artifact | |
uses: actions/download-artifact@v3 | |
# if `name` is not specified, all artifacts are downloaded. | |
- name: Upload Coverage to Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |