This repository was archived by the owner on Apr 11, 2026. It is now read-only.
build(deps): bump step-security/harden-runner from 2.12.0 to 2.12.1 #327
Workflow file for this run
This file contains hidden or 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" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Poetry | |
| uses: abatilo/actions-poetry@v4 | |
| with: | |
| poetry-version: "2.1.1" | |
| - name: Install Dependencies | |
| run: | | |
| poetry install | |
| # Update output format to enable automatic inline annotations. | |
| - name: Lint check | |
| run: poetry run ruff check --output-format=github . | |
| - name: Unit test | |
| run: poetry run pytest | |
| docker-build: | |
| name: Build wfsrv docker image | |
| uses: ./.github/workflows/reusable-docker-build-push.yaml | |
| with: | |
| bake-target: workflowserver | |
| image-name: wfsrv | |
| image-tag: ${{ github.sha }} |