Files
AdPlatform-Server/.gitea/workflows/ci.yaml
Grae Jones 8dd0e11b99
Some checks failed
CI Test / test (push) Failing after 3s
Add Build Step
2026-03-17 16:29:43 -07:00

19 lines
321 B
YAML

name: CI Test
on:
push:
branches:
- master
jobs:
test:
runs-on: host
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Say hello
run: echo "CI runner is working!"
- name: Build
run: dotnet build AdPlatformServers.sln --configuration Release