Skip to content

testing build with python 3.10 #199

testing build with python 3.10

testing build with python 3.10 #199

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: macos-latest
env:
PYTHON: '3.10'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.10
- name: Install dependencies
run: |
pip install -r requirements.txt
# make phykit CLI available for tests
make install
# install test dependencies
pip install -r tests/requirements.txt
- name: Generate coverage report
run: |
make test.coverage
- name: Upload unit test coverage to Codecov
uses: codecov/codecov-action@v1.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./unit.coverage.xml
flags: unit
env_vars: PYTHON
name: codecov-unit
fail_ci_if_error: false
- name: Upload integration test coverage to Codecov
uses: codecov/codecov-action@v1.0.7
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./integration.coverage.xml
flags: integration
env_vars: PYTHON
name: codecov-integration
fail_ci_if_error: false
docs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.7
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Build docs
run: |
cd docs
pipenv install
pipenv run make html
cd ..
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/_build/html