Skip to content

Commit

Permalink
ci: use GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mingrammer committed Jan 16, 2024
1 parent bc30eb9 commit 0967159
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run tests

on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"

jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
- name: Run tests
run: |
go test ./...
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 0967159

Please sign in to comment.