mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:25:43 +00:00
35 lines
931 B
YAML
35 lines
931 B
YAML
name: Source Validator
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
source_validator:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(format('{0} {1}', github.event.head_commit.message, github.event.pull_request.title), '[ci-skip]')"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: 8.0.x
|
|
|
|
- name: Add GitHub NuGet source
|
|
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/oliverbooth/index.json"
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build
|
|
run: dotnet build -c Debug
|
|
|
|
- name: Run Source Validation
|
|
run: dotnet run --project ./tools/SourceValidator/SourceValidator.csproj ./X10D/src
|