Update dependencies #163
Workflow file for this run
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
name: CI | |
on: | |
push: | |
pull_request: | |
branches: [ $default-branch ] | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
jobs: | |
ubuntu: | |
name: "Ubuntu" | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
otp: [23.3, 24.3] | |
rebar: [3.20.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar}} | |
- name: Format check | |
run: rebar3 format --verify | |
- name: Tests | |
run: rebar3 test | |
windows: | |
name: "Windows" | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
otp: [23.3, 24.3] | |
rebar: [3.20.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar}} | |
- name: Tests | |
run: rebar3 test |