Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

archive

archive #43

Workflow file for this run

name: test
on:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- '3.8'
env:
OS: ${{ matrix.os }}
PYTHON: '3.8'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements.txt
- run: pytest --cov=./ --cov-report=xml --cov-report=term
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
env_vars: OS,PYTHON
name: codecov