Simplest ci #1
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 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version-file: '.python-version' | |
- uses: actions/cache@v4 | |
id: cache-dependencies | |
with: | |
path: | | |
.venv | |
key: ${{ runner.os }}-venv-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/*requirements.txt') }} | |
- name: Install dependencies | |
if: steps.cache-dependencies.outputs.cache-hit != 'true' | |
run: | | |
pip install uv ruff | |
uv venv | |
source .venv/bin/activate | |
make install-dev-deps | |
- name: Run the linter | |
run: | | |
source .venv/bin/activate | |
cp src/app/.env.ci src/app/.env | |
make lint | |
- name: Run the tests | |
run: | | |
make test |