Skip to content

Commit

Permalink
Swap TravisCI for GitHub Actions:
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry McConville committed Feb 1, 2023
1 parent ecb9e64 commit 743a23b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
26 changes: 26 additions & 0 deletions .gtihub/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test

on:
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.19.5'

- name: Install dependencies
run: go get .

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

- name: Test
run: go test -v ./...
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 743a23b

Please sign in to comment.