[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
tsipinio committed May 29, 2023
2 parents fdef0e9 + 2b66e8e commit a1ce5ec
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 18 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Run tests for all versions
run: sbt +test

- name: Run test coverage
run: sbt clean coverage test

- name: Coverage Report
run: sbt coverageReport

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ride

[![Build Status](https://travis-ci.org/kolotaev/ride.svg?branch=master)](https://travis-ci.org/kolotaev/ride)
[![Build Status](https://github.com/kolotaev/ride/workflows/CI/badge.svg?branch=master)](https://github.com/kolotaev/ride/actions)
[![codecov.io](https://codecov.io/github/kolotaev/ride/coverage.svg?branch=master)](https://codecov.io/github/kolotaev/ride?branch=master)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.kolotaev/ride_2.12.svg?label=Maven%20Central%20|%20Scala%202.12)](https://search.maven.org/search?q=g:%22com.github.kolotaev%22%20AND%20a:%22ride_2.12%22)
[![Maven Central](https://img.shields.io/maven-central/v/com.github.kolotaev/ride_2.13.svg?label=Maven%20Central%20|%20Scala%202.13)](https://search.maven.org/search?q=g:%22com.github.kolotaev%22%20AND%20a:%22ride_2.13%22)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")

// For releasing (Sonatype Nexus and Maven Central)
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.3")
Expand Down

0 comments on commit a1ce5ec

Please sign in to comment.