Skip to content

Commit

Permalink
Update GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed Feb 8, 2024
1 parent 6dca32b commit a2d15a5
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
include:
- elixir: 1.15.7
otp: 26.1
- elixir: 1.16.0
- elixir: 1.16.1
otp: 26.2
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-canary-smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16.0
elixir-version: 1.16.1
- run: mix deps.get
- run: mix deps.compile
- run: mix compile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/compatibility-elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
repo_url: ["https://github.com/elixir-lang/elixir.git"]
repo_branch: ["v1.13", "main"]
otp: [23.3, 24.3, 25.3, 26.1]
elixir: [1.11.4, 1.12.3, 1.13.4, 1.14.5, 1.15.7, 1.16.0]
elixir: [1.11.4, 1.12.3, 1.13.4, 1.14.5, 1.15.7, 1.16.1]
exclude:
- elixir: 1.11.4
otp: 26.1
Expand All @@ -36,9 +36,9 @@ jobs:
otp: 23.3
- elixir: 1.15.7
otp: 24.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 23.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 24.3
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-os-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16.0
elixir-version: 1.16.1
- run: mix deps.get
- run: mix deps.compile
- run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/compatibility-phoenix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
repo_url: ["https://github.com/phoenixframework/phoenix.git"]
repo_branch: ["v1.6", "main"]
otp: [23.3, 24.3, 25.3, 26.1]
elixir: [1.11.4, 1.12.3, 1.13.4, 1.14.5, 1.15.7, 1.16.0]
elixir: [1.11.4, 1.12.3, 1.13.4, 1.14.5, 1.15.7, 1.16.1]
exclude:
- elixir: 1.11.4
otp: 26.1
Expand All @@ -35,9 +35,9 @@ jobs:
otp: 23.3
- elixir: 1.15.7
otp: 24.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 23.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 24.3
steps:
- uses: actions/checkout@v4
Expand All @@ -59,7 +59,7 @@ jobs:
matrix:
otp: [23.3, 24.3, 25.3, 26.1]
# phx_new depends on newer versions of Elixir than Credo
elixir: [1.14.5, 1.15.7, 1.16.0]
elixir: [1.14.5, 1.15.7, 1.16.1]
exclude:
- elixir: 1.11.4
otp: 26.1
Expand All @@ -79,9 +79,9 @@ jobs:
otp: 23.3
- elixir: 1.15.7
otp: 24.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 23.3
- elixir: 1.16.0
- elixir: 1.16.1
otp: 24.3
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/housekeeping-bugfix-reproducer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
otp: [26.2]
elixir: [1.16.0]
elixir: [1.16.1]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/housekeeping-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16.0
elixir-version: 1.16.1
- run: mix deps.get
- run: mix compile
- run: ./test/check_formatted.sh
22 changes: 18 additions & 4 deletions .github/workflows/housekeeping-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Housekeeping: Trigger"
name: "Housekeeping"
on:
push:
branches:
Expand All @@ -9,8 +9,8 @@ on:
- master

jobs:
test:
name: "mix test ..."
trigger:
name: "trigger"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
Expand All @@ -19,6 +19,20 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16.0
elixir-version: 1.16.1
- run: mix deps.get
- run: mix test test/credo/check/housekeeping_trigger.exs
params:
name: "params"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16.1
- run: mix deps.get
- run: mix test test/credo/check/housekeeping_params.exs

0 comments on commit a2d15a5

Please sign in to comment.