Try out potential new action #361
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: | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: "1" # Make tools pretty. | |
SETUPTOOLS_SCM_PRETEND_VERSION: "1.0" # avoid warnings about shallow checkout | |
jobs: | |
check-argon2-cffi-bindings: | |
name: Build & verify the argon2-cffi-bindings package. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: hynek/argon2-cffi-bindings | |
submodules: recursive | |
path: hynek/argon2-cffi-bindings | |
- uses: actions/checkout@v4 | |
with: | |
path: action | |
- uses: ./action | |
id: baipp | |
with: | |
path: hynek/argon2-cffi-bindings | |
skip-wheel: 'true' | |
check-structlog: | |
name: Build & verify the structlog package. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: hynek/structlog | |
path: structlog | |
- uses: actions/checkout@v4 | |
with: | |
path: action | |
- uses: ./action | |
id: baipp | |
with: | |
path: structlog | |
upload-name-suffix: "-structlog" | |
- run: echo Packages can be found at ${{ steps.baipp.outputs.dist }} | |
check-pytest: | |
name: Build & verify the pytest package. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: pytest-dev/pytest | |
path: pytest | |
- uses: actions/checkout@v4 | |
with: | |
path: action | |
- uses: ./action | |
id: baipp | |
with: | |
path: pytest | |
upload-name-suffix: "-pytest" | |
- run: echo Packages can be found at ${{ steps.baipp.outputs.dist }} |