42 lines
973 B
YAML
42 lines
973 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
test-on-windows:
|
|
runs-on: win-10
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.20
|
|
|
|
- name: Build Go Application
|
|
run: |
|
|
go build -o spitfire-installer.exe
|
|
echo "Application built successfully."
|
|
|
|
- name: Run Go Application
|
|
run: |
|
|
./spitfire-installer.exe || echo "Application failed to run."
|
|
|
|
test-on-alpine:
|
|
runs-on: alpine-1.20
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Go
|
|
run: |
|
|
apk add --no-cache go
|
|
go version
|
|
|
|
- name: Build Go Application
|
|
run: |
|
|
go build -o spitfire-installer
|
|
echo "Application built successfully."
|
|
|
|
- name: Run Go Application
|
|
run: |
|
|
./spitfire-installer || echo "Application failed to run."
|