Skip to content

Commit

Permalink
fix cil
Browse files Browse the repository at this point in the history
  • Loading branch information
zemuldo committed Sep 4, 2023
1 parent f5d6fcb commit f763844
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ env:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['20.0', '22.0', '24.0', '26.0']
elixir: ['1.8', '1.10', '1.12', '1.14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
- uses: actions/checkout@v3
steps:
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ env.ELIXIR_VERSION }}
otp-version: ${{ env.OTP_VERSION }}
experimental-otp: true
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: echo 'JAVA=SCRIPT\nER=LANG' > .env
- run: mix deps.get
- run: mix test
Expand Down

0 comments on commit f763844

Please sign in to comment.