Skip to content

Port CI to GitHub Actions and remove CircleCI #1

Port CI to GitHub Actions and remove CircleCI

Port CI to GitHub Actions and remove CircleCI #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:12.6
env:
POSTGRES_USER: postgres
POSTGRES_DB: test_db
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set up database
run: |
sudo apt-get install -y postgresql-client
export DATABASE_URL=postgres://postgres:@localhost/test_db
python manage.py migrate --noinput
python manage.py collectstatic --noinput
- name: Run tests
run: |
export DATABASE_URL=postgres://postgres:@localhost/test_db
python manage.py test
- name: Store test reports
if: always()
uses: actions/upload-artifact@v2
with:
name: test-reports
path: test-reports