Add sbt-tpolecat #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test the library | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/**' | |
- 'figlet4s-benchmarks/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/**' | |
- 'project/**' | |
jobs: | |
test_library: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Figlet | |
run: sudo apt-get install -y figlet | |
- name: Run tests on all versions | |
run: sbt "+test; +IntegrationTest/test" | |
- name: Test styling | |
run: sbt styleCheck | |
- name: Test API documentation | |
run: sbt unidoc |