build(deps): bump softprops/action-gh-release from c9b46fe7aad9f02afd89b12450b780f52dacfb2d to 0ab9029cac4874ac25cd2d941052851bef4d66f4 #57
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
--- | |
# yamllint disable rule:line-length | |
name: PR action | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
lint: | |
uses: ./.github/workflows/linter.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
if: ${{ !env.ACT }} # skip during local actions testing | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[release] | |
- name: Build | |
run: flit build |