Merge pull request #11 from Pyseph/Pyseph-patch-2 #40
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: CompeyDev/setup-rokit@v0.1.2 | |
with: | |
version: v1.0.0 # name of git tag in rokit (uses latest tag by default) | |
path: "." # path to project dir containing a `rokit.toml`, `aftman.toml`, or `foreman.toml` ("." (current dir) by default) | |
cache: false # whether to enable binary caching between runs (false by default) | |
token: ${{ github.token }} | |
- name: Lint | |
run: selene ./src |