Skip to content

feat: add find links #2

feat: add find links

feat: add find links #2

Workflow file for this run

name: Test building
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install go
run: |
curl -OL https://go.dev/dl/go1.22.1.linux-amd64.tar.gz
rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz
- name: test
run: make test