Skip to content

v6.3.0 - quick token hash #38

v6.3.0 - quick token hash

v6.3.0 - quick token hash #38

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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
7.0.x
8.0.x
- name: Install dependencies
run: |
cd tests
cd EasyCrypto.Tests
dotnet restore
cd ..
cd ..
- name: Build
run: |
cd tests
cd EasyCrypto.Tests
dotnet build --configuration Release --no-restore
cd ..
cd ..
- name: Test
run: |
cd tests
cd EasyCrypto.Tests
dotnet test --no-restore --verbosity normal