Add InMemory sample and improve Redis sample. #98
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: Build & Test | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore src/Nebula.Caching.Redis/Nebula.Caching.Redis.csproj | |
- name: Build | |
run: dotnet build src/Nebula.Caching.Redis/Nebula.Caching.Redis.csproj --no-restore | |
# tests: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Test | |
# run: dotnet test tests/ --no-build --verbosity normal | |