Skip to content

Convert travis CI to GH actions #2

Convert travis CI to GH actions

Convert travis CI to GH actions #2

Workflow file for this run

name: Go CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.13.x'
- name: Run CI
run: make ci