Skip to content

Commit

Permalink
test: move from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
EdenGillies-lumen committed Apr 24, 2024
1 parent 4eb1c87 commit d53c76a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Go

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

jobs:

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

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

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

This file was deleted.

0 comments on commit d53c76a

Please sign in to comment.