Skip to content

chore(ci): replace drone with git actions #3

chore(ci): replace drone with git actions

chore(ci): replace drone with git actions #3

Workflow file for this run

name: Gits test workflow
on:
push:
branches: ["master", "next"]
pull_request:
branches: ["master", "next"]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Unit-tests
run: make test-unit
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest