19 lines
476 B
YAML
19 lines
476 B
YAML
on: [push]
|
|
jobs:
|
|
# test:
|
|
# runs-on: docker
|
|
# steps:
|
|
# - run: echo All good!
|
|
dotnet:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
repository: "git/pascal_nulah/Nulah.PowerShell"
|
|
ref: "feature/forgejo-runner-and-actions"
|
|
|
|
- id: dotnet-build
|
|
uses: ./.forgejo/dotnet-build'
|
|
# with:
|
|
# input-two-required: "two"
|
|
- run: test "${{ steps.dotnet-build.outputs.key }}" = "two"
|