Skip to content

Migrate to reusable workflow #415

Migrate to reusable workflow

Migrate to reusable workflow #415

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Install dependencies
working-directory: ./space2stats_api/src
run: |
poetry install --with test
- name: install lib postgres
uses: nyurik/action-setup-postgis@v2
- name: Run pre-commit
working-directory: ./space2stats_api/src
run: |
poetry run pre-commit run --all-files
- name: Run tests
working-directory: ./space2stats_api/src
run: |
poetry run python -m pytest --benchmark-skip tests
env:
PGHOST: localhost
PGPORT: 5432
PGDATABASE: mydatabase
PGUSER: myuser
PGPASSWORD: mypassword
PGTABLENAME: space2stats
S3_BUCKET_NAME: test-bucket
deploy-to-dev:
uses: "./.github/workflows/deploy.yml"
needs: test
if: ${{ github.event_name == 'pull_request' && github.base_ref == 'main' }}
with:
environment: Space2Stats API Dev
stage: dev
secrets: inherit
deploy-to-production:
uses: "./.github/workflows/deploy.yml"
needs: test
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
with:
environment: Space2Stats API Prod
stage: prod
secrets: inherit