Skip to content

Adopted mise

Adopted mise #78

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request: ~
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Go version from .mise.toml
uses: SebRollen/[email protected]
id: get-golang-version
with:
file: .mise.toml
field: tools.golang
- uses: actions/setup-go@v5
with:
go-version: '${{ steps.get-golang-version.outputs.value }}'
- name: Get golangci-lint version from .mise.toml
uses: SebRollen/[email protected]
id: get-golangci-lint-version
with:
file: .mise.toml
field: tools.golangci-lint
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
version: 'v'${{ steps.get-golangci-lint-version.outputs.value }}'
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected]