Skip to content

Commit

Permalink
Experiment with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Olafur Pall Geirsson committed Sep 23, 2019
1 parent e551ab8 commit 3ee0602
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 104 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v2
- name: Formatting
run: ./bin/scalafmt --test
- name: Scalafix
run: csbt scalafixCheck
- name: Documentation
run: csbt docs/docusaurusCreateSite
build:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- "slow/testOnly tests.sbt"
- "slow/testOnly tests.mill"
- "slow/testOnly tests.gradle"
- "slow/testOnly tests.maven"
- "slow/testOnly tests.feature"
- "unit/test"
- "+cross/test"
steps:
- uses: actions/checkout@v1
- uses: olafurpg/setup-scala@v2
- name: Compile
run: csbt '${{ matrix.command }}'
60 changes: 0 additions & 60 deletions .travis.yml

This file was deleted.

38 changes: 0 additions & 38 deletions appveyor.yml

This file was deleted.

6 changes: 0 additions & 6 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 3ee0602

Please sign in to comment.