Skip to content

Commit

Permalink
Set CI and configure dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitabarskov committed Mar 25, 2024
1 parent fdf796c commit deed8ba
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "pip"
directory: "/poetry"
schedule:
interval: "weekly"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
groups:
dev:
dependency-type: "development"
production:
dependency-type: "production"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
17 changes: 17 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
pull_request: {}
push:
branches:
- main
workflow_dispatch: {}

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: earthly/actions-setup@v1
with:
version: ">=0.8 <1.0"
- run: |
earthly --ci +ci

0 comments on commit deed8ba

Please sign in to comment.