Skip to content

Set up .NET 7 during CI/CD. #10

Set up .NET 7 during CI/CD.

Set up .NET 7 during CI/CD. #10

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up .NET 7
uses: actions/setup-dotnet@v3
with:

Check failure on line 17 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
dotnet-version: '7'
- name: Build
run: docker build --target build .
- name: Test
run: docker build --target test .