#12: moved sample project (#18) #17
This file contains hidden or 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: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: .NET Tool Restore | |
run: dotnet tool restore | |
# just pass anything to parameters, since the build output won't be released | |
- name: Build & Test | |
uses: ./.github/actions/build-n-test | |
with: | |
library_version: 0.0.0.1 | |
version_suffix: "" | |
configuration: Debug | |
gist_key: ${{ secrets.GH_GIST_API_KEY }} |