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

Test tests GitHub action #1487

Test tests GitHub action

Test tests GitHub action #1487

Workflow file for this run

name: 🧪 Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# Relies on the master branch built docker image for build-deps
- name: Start Docker Compose & build
run: cd docker && docker-compose up -d
# Run tests
- name: Build and Run Underpass Tests
run: docker-compose -f docker-compose.yml exec -T underpass sh -c "cd /code/build && make check -j `nproc`"