Skip to content

Commit

Permalink
Replace CircleCI with Github Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nezorflame committed Mar 19, 2024
1 parent 43dcbb9 commit 15165eb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .circleci/config.yml

This file was deleted.

33 changes: 33 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

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

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

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"

- name: Set up tools
run: make tools

- name: Build
run: make build

- name: Lint
run: make lint

- name: Test
run: make test

0 comments on commit 15165eb

Please sign in to comment.