Skip to content

feat: rewrite in Go #1820

feat: rewrite in Go

feat: rewrite in Go #1820

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
- name: Compile app
run: go build
- name: Upload compiled binary
uses: actions/upload-artifact@v3
with:
name: how
path: how
check-formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
- name: Check formatting
run: gofmt -l .
lint:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
needs: [build, lint]
steps:
- name: Checkout git repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}