⬆️ Bump treelite-runtime from 3.9.0 to 3.9.1 in /testdata #104
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: reviewdog | |
on: | |
- pull_request | |
env: | |
LIBRARY_PATH: /usr/local/lib | |
LD_LIBRARY_PATH: /usr/local/lib | |
TREELITE_VERSION: 3.4.0 | |
jobs: | |
golangci-lint: | |
name: runner / golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Install prerequirements | |
run: sudo apt-get install -y make cmake g++ python3-pip | |
- name: Install treelite | |
run: | | |
git clone https://github.com/dmlc/treelite.git -b $TREELITE_VERSION /tmp/treelite | |
mkdir /tmp/treelite/build | |
pushd /tmp/treelite/build | |
cmake .. | |
sudo make install | |
popd | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
github_token: ${{ github.token }} | |
reporter: "github-pr-review" | |
filter_mode: "file" |