Skip to content

Fix build issues

Fix build issues #56

Workflow file for this run

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 .