-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb0bb2f
commit 45f6067
Showing
2 changed files
with
64 additions
and
55 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Build&Test | ||
|
||
on: | ||
push: | ||
branches: [ dev, main, master, '**' ] | ||
pull_request: | ||
branches: [ dev, main, master ] | ||
|
||
jobs: | ||
|
||
linux: | ||
name: build and test on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
|
||
services: | ||
redis6379: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
redis6380: | ||
image: redis | ||
ports: | ||
- 6380:6379 | ||
redis6388: | ||
image: redis | ||
ports: | ||
- 6388:6379 | ||
memcached1: | ||
image: bitnami/memcached | ||
ports: | ||
- 11211:11211 | ||
memcached2: | ||
image: bitnami/memcached | ||
ports: | ||
- 11212:11211 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET SDK 6.0.x | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 6.0.x | ||
|
||
- name: Show dotnet Version | ||
run: | | ||
dotnet --list-sdks | ||
dotnet --list-runtimes | ||
- name: Show docker info | ||
run: | | ||
docker ps -a | ||
- name: Build with dotnet | ||
run: | | ||
dotnet build --configuration Release /home/runner/work/EasyCaching/EasyCaching/EasyCaching.sln | ||
- name: Run tests on net6.0 | ||
run: | | ||
dotnet test --framework=net6.0 /home/runner/work/EasyCaching/EasyCaching/test/EasyCaching.UnitTests/EasyCaching.UnitTests.csproj |