Skip to content

No cache

No cache #78

Workflow file for this run

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
env:
API_KEY: ${{ secrets.RB_API_KEY }}
run: dotnet test --configuration Release