Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Add deprecation notice #86

Add deprecation notice

Add deprecation notice #86

# This workflow will install Python dependencies, lint and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run tests
on:
push:
branches-ignore:
- gh-pages
pull_request:
branches-ignore:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade tox-gh-actions
- name: Test with tox/pytest
env:
GSHEET_AUTH: ${{ secrets.GSHEET_AUTH }}
run: |
tox
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
junit_files: .tox/*.xml
- name: Upload Coverage Results
uses: codecov/codecov-action@v3
if: success()