Merge pull request #2191 from glensc/pep639 #208
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 | |
tags: | |
- "*.*.*" | |
pull_request: | |
jobs: | |
docker: | |
uses: ./.github/workflows/docker-image.yml | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
uses: ./.github/workflows/test.yml | |
if: ${{ github.event_name == 'pull_request' }} | |
automerge: | |
uses: ./.github/workflows/automerge.yml | |
needs: | |
- docker | |
- test | |
secrets: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
# vim:ft=yaml:et:ts=2:sw=2 |