Add id to serialized output, and exact reason to filters, to support … #163
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: Build | |
on: | |
# Run this workflow for pushes on all branches | |
push: | |
branches: | |
- '**' | |
# Run this workflow when a tag or branch is created | |
create: | |
# Run this workflow for pull requests | |
pull_request: | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies and setup | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r .poetry-version | |
poetry install | |
poetry run python manage.py collectstatic | |
- name: Run tests | |
run: | | |
poetry run coverage run manage.py test --settings=test_settings | |
poetry run coverage xml | |
- name: Coveralls report | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel: true | |
finish: | |
runs-on: ubuntu-latest | |
needs: run_tests | |
steps: | |
- name: Close parallel build | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true | |
build_and_publish_image: | |
# Only run this job if the run_tests job has succeeded, and if | |
# this workflow was triggered by the creation of a new tag | |
needs: run_tests | |
if: github.event_name == 'create' && github.event.ref_type == 'tag' && github.event.repository.fork == false | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_REPOSITORY: observatorycontrolsystem/downtime | |
DOCKER_IMAGE_TAG: ${{ github.event.ref }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build image and push to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
pull: true | |
push: true | |
tags: ${{ env.DOCKER_REPOSITORY }}:${{ env.DOCKER_IMAGE_TAG }} |