Skip to content

Update sbt-tpolecat to 0.5.1 #832

Update sbt-tpolecat to 0.5.1

Update sbt-tpolecat to 0.5.1 #832

Workflow file for this run

name: Scala
on:
pull_request:
branches:
- main
paths-ignore:
- 'web-app/**'
- 'imgs/**'
- 'README.md'
- 'kafka.yml'
push:
branches:
- main
paths-ignore:
- 'web-app/**'
- 'imgs/**'
- 'README.md'
- 'docker-compose.yml'
- 'kafka.yml'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: "Cache for sbt & coursier ♨️"
uses: coursier/[email protected]
with:
extraSbtFiles: 'tmp/remote-cache/**'
- name: "Starting up Redis 🐳"
run: docker-compose up -d redis
- name: "Install Nix ❄️"
uses: cachix/install-nix-action@v22
- name: "Install Cachix ❄️"
uses: cachix/cachix-action@v12
with:
name: feda
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: "Run trading tests 🚀"
run: nix develop -c sbt 'pullRemoteCache;test;it/test;webapp/fastLinkJS;pushRemoteCache'
- name: "Shutting down Redis 🐳"
run: docker-compose down