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

Create nist800-53-r5-mappings.xlsx #142

Create nist800-53-r5-mappings.xlsx

Create nist800-53-r5-mappings.xlsx #142

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test Mappings
on: [push, 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