Python deequ api part1 #7
Workflow file for this run
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: Tests and code style | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: olafurpg/setup-scala@v11 | |
with: | |
java-version: [email protected] | |
- name: Run scalafmt check | |
run: | | |
cd tsumugi-server | |
sbt scalafmtCheckAll | |
- name: Run Tests | |
run: | | |
cd tsumugi-server | |
sbt test |