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

ci(feat): Start linting both code and some support files #96

Merged
merged 23 commits into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
03dc395
ci(dependabot): Add default reviewer
mark-stopka Jan 24, 2022
3715e55
ci(dependabot): Add Dependabot config validation
mark-stopka Jan 24, 2022
fcffe85
fix(style): Fix GH Actions workflow syntax
mark-stopka Jan 24, 2022
9bad379
Merge branch 'main' into ci_dependabot_add_default_reviewer
mark-stopka Jan 25, 2022
e306525
fix(ci): Dependabot config lint
mark-stopka Jan 25, 2022
fbaf7b2
fix(ci): Typos
mark-stopka Jan 25, 2022
9565246
fix(ci): Convert YAML to JSON for validation
mark-stopka Jan 25, 2022
bbb2491
ci(fix): Fix conversion from YAML to JSON
mark-stopka Jan 25, 2022
3dd667f
ci(fix): Broken workflow spec
mark-stopka Jan 25, 2022
ba88521
ci(fix): Fix workflow error
mark-stopka Jan 25, 2022
4f967b1
ci(fix): Pass JSON Dependabot to validate
mark-stopka Jan 25, 2022
b3281b5
ci(fix): Fix typo
mark-stopka Jan 25, 2022
76d01b1
ci(fix): Restructure env variabkes
mark-stopka Jan 25, 2022
b6a9106
ci(debug): Debug print
mark-stopka Jan 25, 2022
c0bfeae
ci(fix): Add checkout to new pipeline
mark-stopka Jan 25, 2022
6460006
ci(debug): Show JSON output
mark-stopka Jan 25, 2022
8e44260
ci(fix): Style
mark-stopka Jan 25, 2022
34ac12a
ci(debug): Change Dependabot version to string
mark-stopka Jan 25, 2022
53fa603
ci(style): Validate EditorConfig file
mark-stopka Jan 25, 2022
18c25b7
Update dependabot.yml
mark-stopka Jan 25, 2022
143119b
Delete dependabot-2.0.json
mark-stopka Jan 25, 2022
86c140f
Remove @mark-stopka as a reviewer
mark-stopka Jan 26, 2022
106f42e
refactor(ci): Linting pipelining
mark-stopka Jan 26, 2022
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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
reviewers:
- mark-stopka
mark-stopka marked this conversation as resolved.
Show resolved Hide resolved
14 changes: 11 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
command: test
args: --all-features

lints:
name: Lints
lints-rust:
name: Lint Rust
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand All @@ -80,7 +80,15 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
args: --all-features -- -D warnings

lints-others:
name: Lint Support Files
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Check EditorConfig Compliance
uses: editorconfig-checker/action-editorconfig-checker@v1