Skip to content

test github actions

test github actions #3

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
pull_request:
jobs:
Lint:
runs-on: "ubuntu-latest"
env:
GOPATH: "/home/runner/go"
steps:
- run: "echo \"${PATH}:${GOPATH}/bin\" >> $GITHUB_PATH"
- uses: "actions/checkout@v4"
- run: "sudo apt-add-repository ppa:longsleep/golang-backports"
- run: "sudo apt-get update"
- run: "sudo apt-get install -y cargo golang-1.21 make npm"
- run: "make -f install.mk"
- run: "make lint"