summaryrefslogtreecommitdiff
path: root/.github/workflows/cli.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cli.yml')
-rw-r--r--.github/workflows/cli.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml
deleted file mode 100644
index 77b5bfe073..0000000000
--- a/.github/workflows/cli.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: CLI CI
-
-permissions:
- contents: read
-
-on:
- push:
- branches:
- - master
- - develop
- pull_request:
- paths:
- - 'lib/python/**'
- - 'requirements.txt'
- - '.github/workflows/cli.yml'
-
-jobs:
- test:
- runs-on: ubuntu-latest
-
- container: ghcr.io/qmk/qmk_cli
-
- steps:
- - name: Disable safe.directory check
- run : git config --global --add safe.directory '*'
-
- - uses: actions/checkout@v4
- with:
- submodules: recursive
-
- - name: Install dependencies
- run: pip3 install -r requirements-dev.txt
- - name: Run tests
- run: qmk pytest