This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
Update MapEx link #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Mappings | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Control Framework Tests | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
# Semantic version range syntax or exact Python version | |
python-version: '3.8' | |
- name: Install and update essential dependencies | |
run: | | |
pip install -U pip setuptools | |
pip install tox-gh-actions | |
- name: Run tests | |
run: | | |
tox | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.xml | |
verbose: true |