Skip to content

Commit

Permalink
Setup CI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Jun 14, 2024
1 parent 02ec779 commit f40bba4
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
poetry-version: ["1.8.2"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --with dev
- name: Configure environment
run: poetry run invoke init-workspace
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Start PostgreSQL container
run: docker compose up -d
- name: Run linting
# https://github.com/actions/runner/issues/241#issuecomment-745902718
shell: 'script -q -e -c "bash {0}"'
run: poetry run invoke lint
- name: Run tests
shell: 'script -q -e -c "bash {0}"'
run: poetry run invoke test --cov
- name: Stop PostgreSQL container
if: ${{ always() }}
run: docker compose down --remove-orphans --volumes
14 changes: 14 additions & 0 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,20 @@ def ci(ctx: Context):
test(ctx, cov=True)


@task
def try_github_actions(ctx: Context):
"""Try Github Actions locally using Act"""
act_path = project_dir / "bin" / "act"
if not act_path.exists():
print("Installing act...")
ctx.run(
"curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash",
hide=True,
pty=True,
)
ctx.run(f"{act_path} -P ubuntu-latest=catthehacker/ubuntu:act-latest", pty=True)


@task
def bump_version(ctx: Context, rule: Literal["patch", "minor", "major"]):
"""Bump version, create a tag, commit and push to GitHub"""
Expand Down

0 comments on commit f40bba4

Please sign in to comment.