Skip to content

Add explicit migrations and fake option to update applied migrations. Resolve #27 #114

Add explicit migrations and fake option to update applied migrations. Resolve #27

Add explicit migrations and fake option to update applied migrations. Resolve #27 #114

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- .github/workflows/**
- src/**
- dev/**
- tox.ini
jobs:
test:
name: test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os:
- ubuntu
# - Windows
# - MacOs
py:
- "3.12.0"
- "3.11"
- "3.10"
- "3.9"
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}
- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2' # the full version of `docker-compose` command
- name: Docker compose up
run: make docker-compose-up
- name: Setup
run: make setup
- name: Test
run: make test
- name: Stop
if: always()
run: make docker-compose-down