Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve GitHub Actions #500

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
88689a6
Do we still need the more aggresive caching?
RadoRado Jan 31, 2025
10c55b0
Can we install dependencies in a different job?
RadoRado Jan 31, 2025
e0b9c70
Lets have a reusable (composite) action
RadoRado Jan 31, 2025
7a5102a
yml
RadoRado Jan 31, 2025
d70780f
`build` no longer `needs`
RadoRado Jan 31, 2025
0ed897a
Perhaps composite actions need to be in a folder with `action.yml`?
RadoRado Jan 31, 2025
b9f57f8
Specify the full path
RadoRado Jan 31, 2025
a7bed6f
ls
RadoRado Jan 31, 2025
3293766
lsls
RadoRado Jan 31, 2025
b371f23
fetch-depth
RadoRado Jan 31, 2025
679be5b
yml
RadoRado Jan 31, 2025
6f8cd39
ls
RadoRado Jan 31, 2025
f1b66d2
paths are hard
RadoRado Jan 31, 2025
95287ea
"
RadoRado Jan 31, 2025
04ef098
paths are hard v2
RadoRado Jan 31, 2025
17c9806
paths are hard v3
RadoRado Jan 31, 2025
5071263
more paths
RadoRado Jan 31, 2025
67d2dff
runs
RadoRado Jan 31, 2025
57c5528
shell
RadoRado Jan 31, 2025
5b0a637
no fetch-depth needed
RadoRado Jan 31, 2025
00ca3ee
Simplify
RadoRado Jan 31, 2025
13f118f
Add new `lint_and_format` build step
RadoRado Feb 1, 2025
c585e29
Add `typecheck` and `tests` build steps
RadoRado Feb 1, 2025
3f78f25
Add `pytest-split` as a new requirement
RadoRado Feb 1, 2025
ab70005
Run `pytest` with `--nomigrations` to check the effect
RadoRado Feb 1, 2025
b2fe27b
Lets run in parallel and see
RadoRado Feb 1, 2025
e8fcfbb
`matrix` is under `strategy`
RadoRado Feb 1, 2025
ff56443
`-n auto` is from `pytest-xdist`
RadoRado Feb 1, 2025
b0c4338
2 groups make more sense
RadoRado Feb 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 36 additions & 34 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,42 @@
name: Django application
on: [push]
jobs:
docker_build:
# docker_build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build docker
# run: docker compose build
# - name: Run ruff
# run: docker compose run django ruff check styleguide_example/
# - name: Run mypy
# run: docker compose run django mypy --config mypy.ini styleguide_example/
# - name: Run tests
# run: docker compose run django py.test

lint_and_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build docker
run: docker compose build
- name: Run ruff
run: docker compose run django ruff check styleguide_example/
- name: Run mypy
run: docker compose run django mypy --config mypy.ini styleguide_example/
- name: Run tests
run: docker compose run django py.test
- uses: ./.github/workflows/python_and_pip
- name: Run ruff linter
run: ruff check .
- name: Run ruff format checker
run: ruff format --check

typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/python_and_pip
- name: Type check
run: mypy --config mypy.ini styleguide_example/

build:
tests:
strategy:
fail-fast: true
matrix:
groups: [1, 2]
runs-on: ubuntu-latest
services:
postgres:
Expand All @@ -29,34 +51,14 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12.4
cache: "pip"
cache-dependency-path: |
requirements/local.txt
requirements/base.txt
# This is a more aggresive cache.
# The one above caches the wheel files, but still runs the installation for them
# While the cache below caches the entire Python directory.
- name: Cache pip
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/Python/3.12.4/x64/ # This path is specific to Ubuntu
key: python-${{ hashFiles('requirements/local.txt') }}-${{ hashFiles('requirements/base.txt') }}
- name: Install dependencies
run: pip install -r requirements/local.txt
- name: Run ruff
run: ruff check .
- name: Type check
run: mypy --config mypy.ini styleguide_example/
- uses: ./.github/workflows/python_and_pip
- name: Run tests
run: pytest
run: pytest --splits 2 --group ${{ matrix.groups }} --splitting-algorithm least_duration

deploy_to_heroku:
runs-on: ubuntu-latest
needs: build
# The project is currently hosted on render.com
needs: [lint_and_format, typecheck, tests]
# The project is currently not hosted anywhere
if: false
steps:
- uses: actions/checkout@v4
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/python_and_pip/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Install & Cache Python dependencies"
description: "Reusable step (aka 'composite action') for doing pip installs, with cache included."

inputs:
python-version:
description: "The version of Python to install"
required: true
default: "3.12.4"

runs:
using: "composite"
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
cache: "pip"
cache-dependency-path: |
requirements/local.txt
requirements/base.txt
- name: Install dependencies
run: pip install -r requirements/local.txt
shell: bash
1 change: 1 addition & 0 deletions requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ boto3-stubs==1.36.6

ruff==0.9.3
pre-commit==4.1.0
pytest-split==0.10.0
Loading