chore(repo): rename examples file to assets #14
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: run tests | |
on: | |
push: | |
jobs: | |
test: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [6.0] | |
steps: | |
- name: Checkout urlbox-dotnet | |
uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
cache: true | |
cache-dependency-path: "./UrlboxSDK" | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Run tests | |
run: dotnet test |