Make quest schedule data driven and add Trials of the Mighty (no rewards) #1014
Workflow file for this run
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
name: lint | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
paths-ignore: | |
- "**/*.yaml" | |
- "**/*.yml" | |
- "**/*.md" | |
env: | |
HUSKY: 0 | |
jobs: | |
csharpier: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '7.0.x' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: CSharpier check | |
run: dotnet csharpier . --check |