Skip to content

v0.10.52.1

v0.10.52.1 #1584

Workflow file for this run

name: Tests
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
test:
name: Ubuntu CI
runs-on: ubuntu-latest
container: keenon/diffdart:test_base
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Build
run: mkdir build &&
cd build &&
cmake .. -DCMAKE_BUILD_TYPE=Release &&
make tests -j2
- name: Run tests
run: cd build &&
ctest -T Test
timeout-minutes: 15