Fix: Typecast blocksize to work on both Unix and Linux #719
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: Platform Lib Pipeline | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: extractions/setup-just@v2 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.22.1' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Lint | |
run: just lint | |
- name: Vet | |
run: just vet | |
- name: Test | |
run: just test-integration |