Skip to content

#7 - Default to grok-3-latest #24

#7 - Default to grok-3-latest

#7 - Default to grok-3-latest #24

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0' # Adjust to your .NET version
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --no-restore
- name: Test
working-directory: ./src
env:
GROK_API_KEY: ${{ secrets.GROK_API_KEY }}
N2YO_API_KEY: ${{ secrets.N2YO_API_KEY }}
run: dotnet test --no-build --verbosity normal