Walk the graph of followers and classify them using an LLM to see if they belong to a member #31
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.x | |
- name: Build | |
run: go build -v . |