8000 x · micro/blog@e94cba3 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

basic activitypub support and change to AGPL v3 #53

basic activitypub support and change to AGPL v3

basic activitypub support and change to AGPL v3 #53

Workflow file for this run

name: Go CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-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.1'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
0