Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

auto/keep-running-on-08-07-2024 #6

Merged
merged 2 commits into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI


env:
ImageOS: ubuntu22

on:
pull_request:
push:
Expand All @@ -9,14 +13,15 @@ on:
jobs:
mix_test:
name: Test (Erlang/OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}})
runs-on: ubuntu-latest
runs-on:
- runs-on
- runner=2cpu-linux-x64
- "run-id=${{ github.run_id }}"
container: hexpm/elixir:${{ matrix.elixir }}-erlang-${{ matrix.otp }}-alpine-3.11.6
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.7.4
otp: 19.3.6.13
- elixir: 1.8.2
otp: 20.3.8.26
- elixir: 1.9.4
Expand All @@ -38,7 +43,10 @@ jobs:

mix_credo:
name: Run credo
runs-on: ubuntu-latest
runs-on:
- runs-on
- runner=2cpu-linux-x64
- "run-id=${{ github.run_id }}"
container: hexpm/elixir:${{ matrix.elixir }}-erlang-${{ matrix.otp }}-alpine-3.11.6
strategy:
matrix:
Expand All @@ -56,7 +64,10 @@ jobs:

check_formatted:
name: Check formatted
runs-on: ubuntu-latest
runs-on:
- runs-on
- runner=2cpu-linux-x64
- "run-id=${{ github.run_id }}"
container: hexpm/elixir:${{ matrix.elixir }}-erlang-${{ matrix.otp }}-alpine-3.11.6
strategy:
matrix:
Expand Down
Loading