Skip to content

Commit

Permalink
Set up code linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lubo committed Apr 21, 2024
1 parent 64d5952 commit b9fbdbb
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-minor
- version-update:semver-patch
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
groups:
all:
patterns:
- '*'
ignore:
- dependency-name: '*'
update-types:
- version-update:semver-major
# Makes it possible to have another config. for the same dir.
# https://github.com/dependabot/dependabot-core/issues/1778#issuecomment-1988140219
target-branch: master
- package-ecosystem: pip
directory: /bookmarkmgr
schedule:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: push
permissions: { }
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: super-linter/super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b9fbdbb

Please sign in to comment.