Skip to content

feat: add remote resource fetch #102

feat: add remote resource fetch

feat: add remote resource fetch #102

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
golang: ["oldstable", "stable"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ matrix.golang }}"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...