Skip to content

Commit

Permalink
Fix cicd naming
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Nov 1, 2021
1 parent 19701f6 commit 574f7ad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,20 @@ env:
# jobs
jobs:
build:
name: build (${{ matrix.scala }})
name: build (${{ matrix.name }})
runs-on: ubuntu-latest
strategy:
matrix:
# supported scala versions
include:
- scala: 2.12.15
name: Scala2-12
test-tasks: coverage test coverageReport
- scala: 2.13.6
name: Scala2-13
test-tasks: coverage test coverageReport
- scala: 3.0.2
name: Scala3
test-tasks: test # scoverage doesn’t support Scala 3

steps:
Expand Down
12 changes: 6 additions & 6 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pull_request_rules:
- "#approved-reviews-by>=1"
- check-success=codecov/patch
- check-success=codecov/project
- check-success=build (2.12.14)
- check-success=build (2.13.6)
- check-success=build (3.0.1)
- check-success=build (Scala2-12)
- check-success=build (Scala2-13)
- check-success=build (Scala3)
- base=master
- label!=work-in-progress
actions:
Expand All @@ -18,9 +18,9 @@ pull_request_rules:
- author=scala-steward
- check-success=codecov/patch
- check-success=codecov/project
- check-success=build (2.12.14)
- check-success=build (2.13.6)
- check-success=build (3.0.1)
- check-success=build (Scala2-12)
- check-success=build (Scala2-13)
- check-success=build (Scala3)
- base=master
actions:
merge:
Expand Down

0 comments on commit 574f7ad

Please sign in to comment.