removed not intended checkins, corrected .gitignore #53
Workflow file for this run
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 | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
go: [1.22.x] | |
name: '${{ matrix.platform }} | ${{ matrix.go }}' | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build | |
run: | | |
make build/vidx2pidx | |
make OS=windows ARCH=amd64 build/vidx2pidx.exe | |
make clean | |
make OS=darwin ARCH=amd64 build/vidx2pidx |