This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
refactor(common): move domain to commons and use circe for http4s ver… #37
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: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- name: "Install Nix ❄️" | |
uses: cachix/install-nix-action@v23 | |
- name: "Check format" | |
run: nix develop -c sbt scalafmtCheckAll scalafmtSbtCheck | |
- name: "Compile" | |
run: nix develop -c sbt compile Test/compile | |
- name: "Test" | |
run: nix develop -c sbt test |