Skip to content

Update weaver-cats, weaver-discipline, ... to 0.9.1 #970

Update weaver-cats, weaver-discipline, ... to 0.9.1

Update weaver-cats, weaver-discipline, ... to 0.9.1 #970

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/checkout@v4
- name: "Cache for sbt & coursier ♨️"
uses: coursier/cache-action@v6
with:
extraSbtFiles: 'tmp/remote-cache/**'
- name: "Starting up Redis 🐳"
run: docker compose up -d redis
- name: "Install Nix ❄️"
uses: cachix/[email protected]
- name: "Install Cachix ❄️"
uses: cachix/cachix-action@v16
with:
name: feda
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: "Run trading tests 🚀"
run: nix run .#sbt -- 'pullRemoteCache;test;it/test;webapp/fastLinkJS;pushRemoteCache'
- name: "Shutting down Redis 🐳"
run: docker compose down