Skip to content

Daniel olson patch 1 (#65) #233

Daniel olson patch 1 (#65)

Daniel olson patch 1 (#65) #233

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