Skip to content

first steps

first steps #1

Workflow file for this run

name: on-push-to-main
concurrency:
group: on-push-to-main
cancel-in-progress: true
on:
push:
branches:
- '*' # TODO - master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Install dependencies
run: dotnet restore

Check failure on line 21 in .github/workflows/on-push-to-main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/on-push-to-main.yml

Invalid workflow file

You have an error in your yaml syntax on line 21
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test