almost #670
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: Build and test the Docker image | |
on: [pull_request, push] | |
jobs: | |
build: | |
name: Build and test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Specify here the list of images to use for the machine | |
os: [ubuntu-22.04] | |
steps: | |
- name: Checkout the project | |
uses: actions/checkout@v2 | |
- name: Build the Docker image | |
shell: bash | |
run: make build-docker | |
- name: Run tests | |
shell: bash | |
run: make test-docker |