Scripts to Get, Correct, and Set Docket, Document, and Comment values #813
Workflow file for this run
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: mirrulations-testing | |
on: [push, pull_request] | |
jobs: | |
static-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 # Checkout the repository content to github runner. | |
- name: Setup Repo & Environment | |
uses: ./.github/actions/setup_environment | |
- name: Execute Makefile Static Tests | |
# this works without .venv because the Makefile modifies the path to use the venv - see Makefile line 4 | |
run: make static | |