Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Oct 4, 2024
1 parent 83aa294 commit 3f60c63
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: ezekg
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build
run: go build -o /dev/null main.go
- name: Vet
run: go vet ./...
- name: Fmt
run: test -z "$(go fmt ./...)"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Keygen CLI

[![CI](https://github.com/keygen-sh/keygen-cli/actions/workflows/test.yml/badge.svg)](https://github.com/keygen-sh/keygen-cli/actions)

CLI to interact with keygen.sh.

## Installation
Expand Down

0 comments on commit 3f60c63

Please sign in to comment.