Skip to content

Commit

Permalink
WIP: Upgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xavier committed Oct 15, 2023
1 parent eb7cc62 commit 1fefce1
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
strategy:
matrix:
otp: ["22", "23", "24"]
elixir: ["1.10.4", "1.11.4", "1.12.3", "1.13.4"]
elixir: ["1.11.4", "1.12.3", "1.13.4"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-elixir@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
experimental-otp: true
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Check format
run: mix format --check-formatted
- name: Check quality
run: mix credo --all --strict || true
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: "strict"
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Check format
run: mix format --check-formatted
- name: Check quality
run: mix credo --all --strict || true

0 comments on commit 1fefce1

Please sign in to comment.