Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
Add ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Hermann authored and Marc Hermann committed Jan 28, 2024
1 parent 0009a48 commit 05a7204
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Run unit and integration tests for CI
# Build any branch that passes CI as a docker image
# Push a docker image tagged with the git hash and branch name
# For PR's, display the option to deploy to the test env
# For merges to main, display the option to deploy to the dev env
# The environments are configured in the GitHub repo settings

name: CI/CD

on:
push:
branches:
- '**'

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/cached-venv
- name: Run mypy & service tests
run: |
source venv/bin/activate
mypy . --ignore-missing-imports
pytest

0 comments on commit 05a7204

Please sign in to comment.