Skip to content

Add CMI5 Single AU state save and rendering #12

Add CMI5 Single AU state save and rendering

Add CMI5 Single AU state save and rendering #12

Workflow file for this run

name: Python CI
on:
push:
branches: [main]
pull_request:
branches:
- '**'
jobs:
run_tests:
name: tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django32, django42, quality]
steps:
- name: Install system requirements
run: sudo apt-get install -y gettext
- uses: actions/checkout@v2
continue-on-error: true
- name: Python setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: |
pip install -r requirements/ci.txt
- name: Run Tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox