Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update build and test workflow
  • Loading branch information
FantasyTeddy committed Jan 3, 2024
commit f25608e7b5a428004936d33c4220f14906e8dbf0
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
name: Build And Test
name: Build and Test

on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:

jobs:
buildAndTest:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
dotnet-version: 8.x

- name: Install dependencies
- name: Restore dependencies
run: dotnet restore

- name: Build
Expand Down