♻️ refactor: optimize file download by streaming content directly ins… #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: CI | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.3" | |
check-latest: true | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Format | |
- name: Check formatting | |
run: | | |
if [ -n "$(go fmt ./...)" ]; then | |
echo " Code is not properly formatted. Please run 'make fmt' locally." | |
exit 1 | |
fi | |
# Vet | |
- name: Run go vet | |
continue-on-error: true | |
run: go vet ./... | |
# Lint | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
# Test | |
- name: Test and calculate coverage | |
run: go test -v -covermode=count -coverprofile=coverage.out ./... | |
# Try compile | |
- name: Compile | |
run: go build -o /dev/null . |