Skip to content

Commit

Permalink
Regenerate workflow with sbt-github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed May 24, 2021
1 parent c3af254 commit c2ed5c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ name: Continuous Integration

on:
pull_request:
branches: ['*']
branches: ['**']
push:
branches: ['*']
branches: ['**']
tags: [v*]

env:
Expand Down Expand Up @@ -50,15 +50,15 @@ jobs:
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Check that workflows are up to date
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck'

- name: Build project (Scala 2)
if: matrix.scala == '2.12.13' || matrix.scala == '2.13.6'
run: sbt ++${{ matrix.scala }} validateJVM validateJS
run: sbt --client '++${{ matrix.scala }}; validateJVM; validateJS'

- name: Build project (Scala 3)
if: matrix.scala == '3.0.0'
run: sbt ++${{ matrix.scala }} validateJVM30 validateJS30
run: sbt --client '++${{ matrix.scala }}; validateJVM30; validateJS30'

- name: Codecov
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit c2ed5c8

Please sign in to comment.