Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

fix(CI/CD): 移除对 nightly toolchain 的需求 #136

fix(CI/CD): 移除对 nightly toolchain 的需求

fix(CI/CD): 移除对 nightly toolchain 的需求 #136

Workflow file for this run

name: Lint
on:
push:
branches:
- dev
workflow_dispatch:
concurrency:
group: "lint"
cancel-in-progress: true
jobs:
lint:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: init environment
uses: ./.github/actions/initEnvironment
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: lint
if: success()
run: cargo make ci-lint