lc-core/.github/workflows/ci.yml

25 lines
423 B
YAML
Raw Normal View History

2021-04-02 06:02:37 -04:00
name: Core CI
on:
2021-04-02 06:04:05 -04:00
push:
2021-04-02 06:02:37 -04:00
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Run tests
2021-04-02 06:05:52 -04:00
run: sbt test assembly
2021-04-02 06:02:37 -04:00
- name: Run linter
run: sbt "scalafixAll --check"
2021-04-02 06:12:47 -04:00
- name: Run locust tests
run: ./tests/run.sh