ci: Bump pip from 24.1.2 to 24.2 in /.github/workflows in the ci group #526
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: Test tap-canny | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- tap_canny/** | |
- tests/** | |
- pyproject.toml | |
- .github/workflows/test.yml | |
- .github/workflows/constraints.txt | |
push: | |
branches: [main] | |
paths: | |
- tap_canny/** | |
- tests/** | |
- pyproject.toml | |
- .github/workflows/test.yml | |
- .github/workflows/constraints.txt | |
schedule: | |
- cron: "0 10 * * *" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: "1" | |
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt | |
strategy: | |
fail-fast: false | |
matrix: | |
script: ["test:integration"] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
include: | |
- { script: "test:dependencies", python-version: "3.12" } | |
- { script: "typing:check", python-version: "3.12" } | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Upgrade pip | |
run: | | |
pip install pip | |
pip --version | |
- name: Install Hatch | |
run: | | |
pipx install --python '${{ steps.setup-python.outputs.python-path }}' hatch | |
hatch --version | |
- name: Run | |
env: | |
TAP_CANNY_API_KEY: ${{ secrets.TAP_CANNY_API_KEY }} | |
TAP_CANNY_START_DATE: ${{ secrets.TAP_CANNY_START_DATE }} | |
run: | | |
hatch run ${{ matrix.script }} | |
pre-commit: | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: "1" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: pip | |
cache-dependency-path: .pre-commit-config.yaml | |
- uses: pre-commit/action@v3.0.1 | |
- uses: pre-commit-ci/lite-action@v1.0.2 | |
if: always() |