Skip to content

Commit

Permalink
Add dependency and checks actions
Browse files Browse the repository at this point in the history
  • Loading branch information
uw0s committed Mar 1, 2024
1 parent c94c8b5 commit 8219c39
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
updates:
- package-ecosystem: 'docker'
directory: '/python/'
schedule:
interval: 'monthly'
- package-ecosystem: 'docker'
directory: '/python/python/'
schedule:
interval: 'monthly'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
- package-ecosystem: 'pip'
directory: '/python/'
schedule:
interval: 'monthly'
- package-ecosystem: 'pip'
directory: '/python/python/'
schedule:
interval: 'monthly'
12 changes: 12 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
on: [push, pull_request]

jobs:
make:
runs-on: ubuntu-20.04
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Check code and build
run: |
cd python/python/ && make clean check all && cd ../..
cd python/ && make clean check all && cd ..

0 comments on commit 8219c39

Please sign in to comment.