Skip to content

Create .readthedocs.yaml #30

Create .readthedocs.yaml

Create .readthedocs.yaml #30

Workflow file for this run

name: Check project
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-latest, macos-latest]
python-version: ['3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Build project
run: make
- name: Check project
run: make check