feat: add eat-break function impl #6
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 workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 9.0.x | |
- name: Add `nuget.voids.site` nuget source | |
run: dotnet nuget add source https://nuget.voids.site/v3/index.json -n nuget.voids.site | |
- name: Build | |
run: dotnet publish -c Release | |
- name: Upload Artifact | |
uses: actions/[email protected] | |
with: | |
path: src/bin |