Skip to content

Commit

Permalink
Add 'run' github workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jskripsky committed Oct 25, 2023
1 parent 0872569 commit 6a13346
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run

on: workflow_dispatch

jobs:
run:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Run
env:
GOTCOURTS_API_KEY: ${{ secrets.GOTCOURTS_API_KEY }}
GOTCOURTS_PHP_SESSION_ID: ${{ secrets.GOTCOURTS_PHP_SESSION_ID }}
run: dotnet run

0 comments on commit 6a13346

Please sign in to comment.