Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbornm committed Jul 10, 2023
1 parent e803bdc commit df77aa5
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions .github/workflows
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
name: go-selfupdate
# 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

on: [push]
name: Go

on:
push:
# branches: [ "master" ]
pull_request:
# branches: [ "master" ]

jobs:
build:

runs-on: debian-latest
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.15'
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Build
run: go build -v ./...
- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...

0 comments on commit df77aa5

Please sign in to comment.