-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a GitHub Actions workflow to run the build script on pull reque…
…sts.
- Loading branch information
1 parent
8ce7f8c
commit 128df14
Showing
4 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build and Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'feature/github-actions' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
build-and-test-windows: | ||
name: Build and test (Windows) | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build and test | ||
shell: pwsh | ||
run: | | ||
.\Build.ps1 | ||
build-and-test-linux: | ||
name: Build and test (Linux) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build and test | ||
shell: pwsh | ||
run: | | ||
.\Build.ps1 -SkipVsix |
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
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
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