RF-Swift/.github/workflows/go.yml

32 lines
580 B
YAML
Raw Normal View History

2024-05-21 12:42:58 -07:00
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.3'
- name: Build
2024-05-21 12:45:56 -07:00
run: |
cd go/rfswift
go build -v .
2024-05-21 12:42:58 -07:00
- name: Test
2024-05-21 12:51:58 -07:00
run: |
cd go/rfswift
go test -v .