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

Update MapEx link

Update MapEx link #158

Workflow file for this run

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