Skip to content

Update the error views. #135

Update the error views.

Update the error views. #135

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: 33 3 * * MON # Run Mondays at 03:33 UTC
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip'
- run: pip install tox tox-gh-actions
- run: tox