Skip to content

chore: add stale action #63

chore: add stale action

chore: add stale action #63

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches: [ master ]
workflow_call:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install codecov
make
make devel
make install
- name: Run tests
run: make test
- name: Run docs build test
run: make -C docs/ html
- name: upload coverage
uses: codecov/codecov-action@v2