Skip to content

build(deps): bump wasmvm to v1.5.2 (#1324) #5411

build(deps): bump wasmvm to v1.5.2 (#1324)

build(deps): bump wasmvm to v1.5.2 (#1324) #5411

Workflow file for this run

name: Lint
# Lint runs golangci-lint over the entire Desmos repository.
# This workflow is run on every pull request and push to master.
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
push:
branches:
- master
jobs:
GolangCI:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Go 🧰
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Compute diff 📜
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/*.go
go.mod
go.sum
- name: Run lint ✅
if: "env.GIT_DIFF != ''"
run: make lint