blob: 56b8c61413bc04ed94ca1af37a7c531c9dbdc988 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: build
on: push
jobs:
build:
name: build ROOT
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ./.github/isabelle-action
with:
TOOL_ARGS: "build -D $GITHUB_WORKSPACE"
|