Generating coverage.xml file #60
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: pull_request | |
on: [pull_request] | |
jobs: | |
run_tests_and_lint: | |
name: "Run Tests and Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Running build and test for ${{ github.ref }} branch" | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Installing the project | |
run: make docker/install | |
- name: Running Lint | |
run: make docker/lint | |
- name: Running tests | |
run: make docker/test |