Skip to content

rename github actions, add auto-build docs github action #8

rename github actions, add auto-build docs github action

rename github actions, add auto-build docs github action #8

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9'
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -c 'import cerf; cerf.install_package_data()'
- name: Test and generate coverage report on Linux
run: |
pip install .[test]
pytest --cov=./ --cov-report=xml