Skip to content

2024-06-12 18:23

2024-06-12 18:23 #97

Workflow file for this run

name: Test
on:
push:
branches:
- develop
- master
- staging
- release/*
- feature/*
- bugfix/*
- hotfix/*
pull_request:
branches: [develop, master]
types: [synchronize, opened, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
setup:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: check files
runs-on: ubuntu-latest
timeout-minutes: 3
outputs:
# test_files: ${{ steps.changes.outputs.run_tests }}
# docker: ${{ steps.changes.outputs.docker_base }}
# python_files: ${{ steps.changes.outputs.python }}
# branch: ${{ steps.extract_branch.outputs.branch }}
hash: ${{ steps.docker_image.outputs.checksum }}
# tags: ${{ steps.meta.outputs.tags }}
version: ${{ steps.docker_image.outputs.version }}
image_name: ${{ steps.docker_image.outputs.name }}
steps:
- run: git config --global --add safe.directory $(realpath .)
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- id: changes
name: Check for file changes
uses: dorny/paths-filter@0bc4621a3135347011ad047f9ecf449bf72ce2bd # v3.0.0
with:
base: ${{ github.ref }}
token: ${{ github.token }}
filters: .github/file-filters.yml
- id: release_hash
uses: ./.github/actions/distro_hash
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
- name: Define target image name
id: docker_image
run: |
branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
version="${branch##*/}"
echo "name=${{vars.DOCKER_IMAGE}}:test-${{steps.meta.outputs.version}}" >> $GITHUB_OUTPUT
echo "tag=test-${{steps.meta.outputs.version}}" >> $GITHUB_OUTPUT
echo "checksum=${{ steps.release_hash.outputs.hash }}" >> $GITHUB_OUTPUT
echo "version=$version" >> $GITHUB_OUTPUT
echo "branch=$branch" >> $GITHUB_OUTPUT
build:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
uses: ./.github/workflows/_build.yml
needs: [setup]
secrets: inherit
with:
image: ${{needs.setup.outputs.image_name}}
checksum: ${{needs.setup.outputs.hash}}
version: ${{needs.setup.outputs.version}}
target: "python_dev_deps"
test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
needs: [build, setup]
runs-on: ubuntu-latest
services:
redis:
image: redis
db:
image: postgres:14
env:
POSTGRES_HOST: db
POSTGRES_DATABASE: dedupe
POSTGRES_PASSWORD: postgres
POSTGRES_USERNAME: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DOCKER_DEFAULT_PLATFORM: linux/amd64
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: |
docker run --rm \
-e DATABASE_URL=postgres://postgres:postgres@localhost:5432/dedupe \
-e SECRET_KEY=secret_key \
-e CACHE_URL=redis://redis:6379/0 \
-e CELERY_BROKER_URL=redis://redis:6379/0 \
--network host \
-v $PWD:/code/app \
-w /code/app \
-t ${{needs.setup.outputs.image_name}} \
pytest tests --create-db -v --maxfail=10
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
files: coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
verbose: false
name: codecov-${{env.GITHUB_REF_NAME}}