diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..c05e64ad --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +on: [push] + +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run a multi-line script + run: | + echo I will try to build something + cd hpcrs/ + make build