Skip to content

Commit

Permalink
Add GHA build
Browse files Browse the repository at this point in the history
Only a minimal setup for now to get an effort towards full CI
and release automation started.
  • Loading branch information
mosabua committed Dec 20, 2024
1 parent 58fc868 commit 7536fc4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up dotnet
uses: actions/setup-dotnet@v3
- name: Set up msbuild
uses: microsoft/setup-msbuild@v2
- name: Set up nuget
uses: nuget/setup-nuget@v2
with:
nuget-version: '5.x'
- name: Run msbuild
run: msbuild trino-csharp/TrinoDriver.sln

0 comments on commit 7536fc4

Please sign in to comment.