14 lines
349 B
YAML
14 lines
349 B
YAML
on: [push]
|
|
jobs:
|
|
# test:
|
|
# runs-on: docker
|
|
# steps:
|
|
# - run: echo All good!
|
|
dotnet:
|
|
runs-on: dotnet
|
|
steps:
|
|
- id: dotnet-build
|
|
uses: .forgejo/dotnet-build@feature/forgejo-runner-and-actions
|
|
# with:
|
|
# input-two-required: "two"
|
|
- run: test "${{ steps.dotnet-build.outputs.key }}" = "two"
|