Skip to content

ci: github actions

ci: github actions #1

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
jobs:
run-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: pip3 install tox
- run: tox