Update Vezel.Zig.Sdk to 4.0.154. #240
Workflow file for this run
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build | |
on: | |
push: | |
branches-ignore: | |
- dependabot/** | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
cfg: | |
- Debug | |
- Release | |
runs-on: windows-2022 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3.5.3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v3.2.0 | |
- name: Build project | |
run: | | |
dotnet tool restore | |
dotnet publish -c ${{ matrix.cfg }} | |
- name: Run samples | |
run: | | |
dotnet example --all |