Skip to content

Commit

Permalink
Run CI on ubuntu-20.04 (elixirmoney#200)
Browse files Browse the repository at this point in the history
This is because the ubuntu-latest is resolved ubuntu-22.04,
which is not compatible with otp 21.3 which this project supports.

This also updates actions/checkout from v2 to v3,
consequently resolving deprecation warning that prompts using Nodejs v16.
  • Loading branch information
sato11 committed Jan 23, 2023
1 parent f65d6d1 commit fb7cbfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: push

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
Expand All @@ -14,10 +14,10 @@ jobs:


steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test
- run: mix test

0 comments on commit fb7cbfe

Please sign in to comment.