Skip to content

Commit

Permalink
Merge pull request #8 from isabelle-prover/github-workflow
Browse files Browse the repository at this point in the history
add GitHub workflow
  • Loading branch information
larsrh authored Jan 5, 2024
2 parents afd11de + c6cfd83 commit f0a4768
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --tag isabelle_go_test
- name: Run the Docker image
run: docker run --rm isabelle_go_test

0 comments on commit f0a4768

Please sign in to comment.