Add GHA build #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |