No need to check if it's template #145
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: | |
branches: ["main"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
# TODO(Marcelo): You can remove this line if you've used the template repository. | |
if: github.repository != 'Kludex/python-template' | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
with: | |
version: "0.4.12" | |
enable-cache: true | |
- name: Set up Python ${{ matrix.python-version }} | |
run: uv python install ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: uv sync --python ${{ matrix.python-version }} --frozen | |
- name: Run tests | |
run: scripts/test | |
- name: Run linters | |
run: scripts/lint | |
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks | |
check: | |
# TODO(Marcelo): You can remove the `github.repository` conditional if you used the template repository. | |
if: github.repository != 'Kludex/python-template' && always() | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |