Skip to content

Bump github/codeql-action from 2 to 3 #100

Bump github/codeql-action from 2 to 3

Bump github/codeql-action from 2 to 3 #100

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v5
with:
go-version: 1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Apt dependencies
run: |
sudo apt update && sudo apt install -y libusb-1.0-0-dev
- name: Get & Make Phidgets22
run: |
wget https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22.tar.gz
tar zxvf libphidget22.tar.gz
rm libphidget22.tar.gz
cd libphidget22*
./configure --prefix=/usr && make -j$(nproc) && sudo make install
cd ..
- name: Build
run: go build -v .