Fix build issues #56
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: Main workflow (PR) | |
on: [pull_request] | |
jobs: | |
Lint: | |
name: Lint project | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v1 | |
- run: make lint | |
Test: | |
name: Run Unit and Integration Tests (macOS) | |
runs-on: macOS-latest | |
steps: | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip looseversion | |
- name: Checkout the Git repository | |
uses: actions/checkout@v1 | |
- run: make ci_tests | |
TestLinux: | |
name: Run Unit and Integration Tests (Ubuntu) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v1 | |
- name: Run tests in container | |
run: docker build -f Tests/Dockerfile.ci -t plank . |