changed nk link to expect the path to the plugin.yml file directly, a… #194
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: validate | |
on: push | |
jobs: | |
validate: | |
name: Validate | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint | |
run: cargo clippy --quiet | |
- name: Style Check | |
run: cargo fmt --check |