mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 12:40:25 +08:00
19 lines
362 B
YAML
19 lines
362 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 'stable'
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -y curl jq
|
|
- name: Run tests
|
|
run: go test ./...
|