mirror of
https://github.com/d3m0k1d/ciweave.git
synced 2026-03-14 19:02:43 +00:00
25 lines
420 B
YAML
25 lines
420 B
YAML
name: ci.yml
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Go setup
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '1.25.7'
|
|
- name: Install deps
|
|
run: go mod tidy
|
|
- name: Run tests
|
|
run: go test ./...
|
|
- name: Build
|
|
run: go build ./...
|