From 8219c39dfea10f5d5a9e7f60adecf440ac20024c Mon Sep 17 00:00:00 2001 From: uw0s Date: Fri, 1 Mar 2024 13:37:09 +0200 Subject: [PATCH] Add dependency and checks actions --- .github/dependabot.yml | 22 ++++++++++++++++++++++ .github/workflows/workflow.yml | 12 ++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/workflow.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5de2451 --- /dev/null +++ b/.github/dependabot.yml @@ -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' \ No newline at end of file diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..aa9bb90 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -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 .. \ No newline at end of file