Skip to content

Upgrade to .NET 10 and .NET 11 (RC) #192

Upgrade to .NET 10 and .NET 11 (RC)

Upgrade to .NET 10 and .NET 11 (RC) #192

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
paths-ignore:
- '**/*.md'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: |
10.0.x
11.0.x
- name: Restore dependencies
run: dotnet restore source
- name: Build
run: dotnet build --no-restore source
- name: Test
run: dotnet test --no-build source
env:
Slackbot_SlackApiKey_BotUser: ${{ secrets.SLACKBOT_SLACKAPIKEY_BOTUSER }}
Slackbot_SlackApiKey_SlackApp: ${{ secrets.SLACKBOT_SLACKAPIKEY_SLACKAPP }}