mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-02 13:03:35 +00:00
23 lines
354 B
YAML
23 lines
354 B
YAML
name: Go
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.24.3"
|
|
|
|
- name: Install dependencies
|
|
run: go get -v ./...
|
|
|
|
- name: Run tests
|
|
run: make test
|