aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 1af08c19899d654a3efa7db0ef9b89a39c066764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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