diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..56b8c61 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,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" + |