Skip to content

increased ci tests for python 3.12 #27

increased ci tests for python 3.12

increased ci tests for python 3.12 #27

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Start containers
run: docker-compose -f "docker-compose.yaml" up -d --build
- name: Run Tests
run: docker-compose run app-service pytest