Skip to content

Commit

Permalink
Merge pull request #15 from keybase/joshblum/github-actions
Browse files Browse the repository at this point in the history
migrate to github actions
  • Loading branch information
joshblum authored Dec 20, 2022
2 parents c8cad2e + 2e821c4 commit 0b515cc
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 19 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x]
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50
- run: go vet ./...
- run: go test ./...
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Go Kext

[![Travis CI](https://travis-ci.org/keybase/go-kext.svg?branch=master)](https://travis-ci.org/keybase/go-kext)
[![Build Status](https://github.com/keybase/go-kext/actions/workflows/ci.yml/badge.svg)](https://github.com/keybase/go-kext/actions)

A library for loading, unloading and viewing info for kernel extensions on OS X (golang).

0 comments on commit 0b515cc

Please sign in to comment.