Skip to content

Commit f96701c

Browse files
authored
Merge pull request #245 from scala-steward/update/scala3-library-3.0.2
Update scala3-library to 3.0.2
2 parents 61a8d9c + d50e4f0 commit f96701c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
scala: ['2.12.12', '2.13.6', '3.0.1']
11+
scala: ['2.12.12', '2.13.6', '3.0.2']
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
@@ -19,8 +19,8 @@ jobs:
1919
- name: Coursier cache
2020
uses: coursier/cache-action@v5
2121
- name: Build and test
22-
if: ${{ matrix.scala == '3.0.1' }}
22+
if: ${{ matrix.scala == '3.0.2' }}
2323
run: sbt ++${{ matrix.scala }} clean test
2424
- name: Build and test
25-
if: ${{ matrix.scala != '3.0.1' }}
25+
if: ${{ matrix.scala != '3.0.2' }}
2626
run: sbt ++${{ matrix.scala }} clean coverage test coverageReport && bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# clipp
2-
[![Build Status](https://travis-ci.org/vigoo/clipp.svg?branch=master)](https://travis-ci.org/vigoo/clipp)
2+
[![CI](https://github.com/vigoo/clipp/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/vigoo/clipp/actions/workflows/ci.yaml)
33
[![codecov](https://codecov.io/gh/vigoo/clipp/branch/master/graph/badge.svg)](https://codecov.io/gh/vigoo/clipp)
44
[![Apache 2 License License](http://img.shields.io/badge/license-APACHE2-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
55

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dynverSonatypeSnapshots in ThisBuild := true
77

88
val scala212 = "2.12.12"
99
val scala213 = "2.13.6"
10-
val scala3 = "3.0.1"
10+
val scala3 = "3.0.2"
1111

1212
val scalacOptions212 = Seq("-Ypartial-unification", "-deprecation")
1313
val scalacOptions213 = Seq("-deprecation")

0 commit comments

Comments
 (0)