Skip to content

ci

ci #47

Workflow file for this run

---
name: ci
on:
push:
branches:
- main
tags-ignore:
- "*"
pull_request:
branches:
- main
workflow_dispatch: {}
schedule:
- cron: 0 18 * * *
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
RELEASE_BUILD: "true"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: false
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: build
run: |
dotnet restore RewriteCSharpRecipes.sln --no-cache --force --force-evaluate
dotnet build RewriteCSharpRecipes.sln --no-restore
- name: test
run: dotnet test RewriteCSharpRecipes.sln