Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed Jan 12, 2024
1 parent 712a870 commit fe80b98
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
test:
runs-on: ubuntu-20.04
name: "[${{matrix.otp}}/${{matrix.elixir}}] CI Tests on Credo [OTP/Elixir]"
name: "Elixir ${{matrix.elixir}} OTP ${{matrix.otp}}"
strategy:
fail-fast: false
matrix:
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 @@ -8,7 +8,7 @@ on:
jobs:
test_on_new_project:
runs-on: ubuntu-20.04
name: "[${{matrix.project.name}}]"
name: "Elixir ${{matrix.elixir}} OTP ${{matrix.otp}} - Credo running on ${{matrix.project.name}}"
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test_on_source:
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
name: "[${{matrix.otp}}/${{matrix.elixir}}] Elixir ${{matrix.repo_branch}} source code analysed by Credo [OTP/Elixir]"
name: "Elixir ${{matrix.elixir}} OTP ${{matrix.otp}} - Credo running on Elixir ${{matrix.repo_branch}} source code"
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/compatibility-os-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
test:
name: "Compatibility: macOS"
name: "Compile & Run"
runs-on: macos-latest
steps:
- uses: actions/checkout@master
Expand All @@ -20,12 +20,12 @@ jobs:
run: |
brew update
brew install elixir
- run: mix deps.get
- run: mix deps.compile
- run: |
mix compile --force --warnings-as-errors
- run: |
mix credo --mute-exit-status
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 @@ -10,8 +10,8 @@ on:

jobs:
test:
name: "Compile & Run"
runs-on: windows-2022
name: "Compatibility: Windows"
strategy:
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-phoenix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
test_on_source:
runs-on: ubuntu-20.04
name: "[${{matrix.otp}}/${{matrix.elixir}}] Phoenix ${{matrix.repo_branch}} source code analysed by Credo [OTP/Elixir]"
name: "Elixir ${{matrix.elixir}} OTP ${{matrix.otp}} - Credo running on Phoenix ${{matrix.repo_branch}}"
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit fe80b98

Please sign in to comment.