mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-10-15 07:23:53 +00:00
32 lines
539 B
YAML
32 lines
539 B
YAML
|
name: Scala CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up JDK 11
|
||
|
uses: actions/setup-java@v2
|
||
|
with:
|
||
|
java-version: '11'
|
||
|
distribution: 'adopt'
|
||
|
|
||
|
- name: Cache sbt
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: |
|
||
|
~/.sbt
|
||
|
~/.cache/coursier/v1
|
||
|
key: scala
|
||
|
|
||
|
- name: Run tests
|
||
|
run: sbt "+scalafixAll --check" +scalafmtCheck "+test"
|