Skip to content
Snippets Groups Projects
Unverified Commit 7c795f8d authored by Piotr Maślanka's avatar Piotr Maślanka Committed by GitHub
Browse files

Create main.yml

parent b7ef0a39
No related branches found
No related tags found
No related merge requests found
name: CI
run-name: ${{ github.actor }}
on: [ push ]
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install everything
run: |
sudo apt-get update
sudo apt-get install -y python3-setuptools python3-yaml python3-dev
pip install -U pip pytest coverage pytest-cov Cython
- name: Test
run: pytest
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment