fix: fix job list render for continuous mode on filter or sort changes #1567
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: Build & Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.22.x | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build, Vet & Test | |
run: | | |
go build ./... | |
go vet ./... | |
go test ./... |