Skip to content

refactor: place ticket scraping logic into their own method #72

refactor: place ticket scraping logic into their own method

refactor: place ticket scraping logic into their own method #72

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- main
- develop
push:
branches:
- develop
jobs:
build:
strategy:
matrix:
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
name: Git Checkout
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v3
name: .NET Setup
with:
dotnet-version: 7.0.x
- name: Restoring
run: dotnet restore --verbosity normal
- name: Building
run: dotnet build --configuration Release --no-restore --verbosity normal
- name: Testing
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal