add scala3 and scala 2 redis uri interpolators #1105
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: Scala | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- series/1.x # CE3 | |
paths: | |
- "modules/**" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2.3.2 | |
- name: "Starting up Redis 🐳" | |
run: docker-compose up -d | |
- name: "Cache for sbt & coursier ♨️" | |
uses: coursier/cache-action@v4.1 | |
- name: "Install Nix ❄️" | |
uses: cachix/install-nix-action@v22 | |
- name: "Install Cachix ❄️" | |
uses: cachix/cachix-action@v12 | |
with: | |
name: redis4cats | |
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" | |
- name: "Run tests and compile documentation 🚀" | |
run: nix develop -c sbt 'buildRedis4Cats' | |
- name: "Test for Binary Compatibility 📦" | |
run: nix develop -c sbt 'mimaReportBinaryIssuesIfRelevant' | |
- name: "Shutting down Redis 🐳" | |
run: docker-compose down |