mirror of
https://github.com/gdamore/tcell.git
synced 2025-05-12 19:29:29 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
487 B
YAML
30 lines
487 B
YAML
name: linux
|
|
on: [push]
|
|
jobs:
|
|
|
|
build:
|
|
name: build
|
|
runs-on: [ ubuntu-latest ]
|
|
steps:
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.18
|
|
id: go
|
|
|
|
- name: Go version
|
|
run: go version
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get dependencies
|
|
run: go get -v -t -d ./...
|
|
|
|
- name: Build
|
|
run: go build -v .
|
|
|
|
- name: Test
|
|
run: go test ./...
|