Skip to content

ci: update actions to latest versions #60

ci: update actions to latest versions

ci: update actions to latest versions #60

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
id: go
- name: Build
run:
- go get -v

Check failure on line 22 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 22, Col: 9): A sequence was not expected
- go build -o go-gvacli -v .
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: go-gvacli-${{ matrix.os }}
path: go-gvacli