mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Add example build test
This commit is contained in:
parent
0577fefd75
commit
e55ffedc35
1 changed files with 11 additions and 0 deletions
11
.github/workflows/build-and-test-alpha.yml
vendored
11
.github/workflows/build-and-test-alpha.yml
vendored
|
|
@ -37,6 +37,17 @@ jobs:
|
|||
working-directory: ./v3
|
||||
run: go test -v ./...
|
||||
|
||||
- name: Run go build for each subdirectory in v3/examples
|
||||
run: |
|
||||
for dir in *
|
||||
do
|
||||
dir=${dir%*/}
|
||||
echo "Building $dir"
|
||||
cd $dir
|
||||
go build $dir
|
||||
cd -
|
||||
done
|
||||
|
||||
- name: Run tests (!mac)
|
||||
if: matrix.os != 'macos-latest'
|
||||
working-directory: ./v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue