diff options
author | Josh Chen | 2020-07-16 18:57:13 +0200 |
---|---|---|
committer | Josh Chen | 2020-07-16 18:57:13 +0200 |
commit | f82258111e48a94d22f12fd4920d443edb66fb55 (patch) | |
tree | 0a600ef8cb4af7163d249cedcb62bdb2fa9890aa /.github/workflows | |
parent | 2a2fa1e4c643b73165af030dc3b6128886f7b654 (diff) |
set up CI
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..dfcfb7b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +name: continuous integration +on: push + +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: ./isabelle-action + with: + OPTION: "build -D ." + |