Skip to content

Add Memcached docs. #94

Add Memcached docs.

Add Memcached docs. #94

Workflow file for this run

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