name: test on: push: branches: - master - main pull_request: jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: erlef/setup-beam@v1 with: otp-version: "26.0.2" # Ensure you update the bin/download-compiler Gleam version to match this gleam-version: "1.2.0" rebar3-version: "3" - run: ./bin/download-compiler - run: gleam deps download - run: gleam format --check src test - run: gleam test - run: gleam run