Skip to content

Use github actions

Use github actions #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
workflow_call: {}
jobs:
run-ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: |
3.10
- name: Install dependencies
run: |
python -m pip install -U pip
pip install tox
- name: Run tests
run: |
tox -s false