diff options
author | Andy Thompson <andrew.thompson@qmul.ac.uk> | 2022-02-11 01:00:55 +0000 |
---|---|---|
committer | Andy Thompson <andrew.thompson@qmul.ac.uk> | 2022-02-11 01:00:55 +0000 |
commit | 72f64a5192da97307156c1529838556f15e94ffa (patch) | |
tree | 422c7e10dbab6ed9f52498971c111c0c2420dce6 /.github/workflows | |
download | lustre-72f64a5192da97307156c1529838556f15e94ffa.tar.gz lustre-72f64a5192da97307156c1529838556f15e94ffa.zip |
:tada: Init repo.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..1af08c1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: test + +on: + push: + branches: + - master + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.0.0 + - uses: erlef/setup-beam@v1.9.0 + with: + otp-version: "23.2" + gleam-version: "0.19.0" + # nice try louis + # - run: gleam format --check src test + - run: gleam deps download + - run: gleam test |