Skip to content

Initial release: appwrite-cli v0.1.0 #1

Initial release: appwrite-cli v0.1.0

Initial release: appwrite-cli v0.1.0 #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: go build ./...
- name: Test
run: go test -v -race -coverprofile=coverage.txt ./...
- name: Vet
run: go vet ./...