Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support rustrover-eap versioning #27

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
name: Lint Code Base
name: Lint
on:
push:
pull_request:
branches: [main]

permissions: { }
jobs:
build:
name: Lint Code Base
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- uses: actions/checkout@v4
- uses: github/super-linter@v5
with:
fetch-depth: 0
- uses: super-linter/super-linter@v6
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_RUST_2015: false
VALIDATE_RUST_CLIPPY: false
3 changes: 1 addition & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ on:
push:
pull_request:
branches: [main]

permissions: { }
env:
CARGO_TERM_COLOR: always

jobs:
fmt:
runs-on: ubuntu-latest
Expand Down
Loading