Merge pull request #17 from chiroptical/drop-flake-utils #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create this in .github/workflows/ci.yml | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}} | |
strategy: | |
matrix: | |
otp: ['25.3'] | |
rebar3: ['3.22.0'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar3}} | |
- run: rebar3 fmt --check | |
- run: rebar3 eunit | |
# restclient causes issues here | |
# missing upstream type definition, see https://github.com/kivra/restclient/issues/47 | |
# - run: rebar3 gradualizer | |
# ===> Could not find application: restc | |
# - run: rebar3 dialyzer |