Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emnigma committed Jan 30, 2024
1 parent e037d58 commit a30ef18
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_and_run.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and Launch C# Project

on: [pull_request]

jobs:
build-and-launch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: GameServers/VSharp

- name: Install dependencies
working-directory: ./GameServers/VSharp
run: |
pwd
dotnet build -c Debug
- name: Launch application
run: |
python3 -h
# dotnet launch

0 comments on commit a30ef18

Please sign in to comment.