23 lines
362 B
YAML
23 lines
362 B
YAML
---
|
|
name: 'ci'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Cloning repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.22.4'
|
|
- name: Test
|
|
run: |
|
|
go test ./... |