mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
29 lines
No EOL
510 B
YAML
29 lines
No EOL
510 B
YAML
name: Debug build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.github/**'
|
|
- '!.github/workflows/debug.yml'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Debug build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Golang
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.18.1
|
|
- name: Build
|
|
run: make |