Skip to content

1.0.2b

1.0.2b #242

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
check-build:
runs-on: ubuntu-20.04
container:
image: traviswheelerlab/ultra-build
volumes:
- ${{ github.workspace }}:/code
steps:
- uses: actions/checkout@v3
- run: cmake . && make
check-examples:
runs-on: ubuntu-20.04
container:
image: traviswheelerlab/ultra-build
volumes:
- ${{ github.workspace }}:/code
steps:
- uses: actions/checkout@v3
- run: cmake . && make examples
check-format:
runs-on: ubuntu-20.04
container:
image: traviswheelerlab/ultra-build
volumes:
- ${{ github.workspace }}:/code
steps:
- uses: actions/checkout@v3
- run: ./tool/check-format.sh