diff options
author | vin <git@vineetk.net> | 2024-01-15 18:48:55 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 18:48:55 -0500 |
commit | 8c8e1ad4d3f6a197cc7a0550940e0c71d84c050e (patch) | |
tree | 9490341e61543f88a23ca04af668abb3acfe2574 /.github/workflows/cli.yml | |
parent | 105f3f893c6cd636e895c1da2d5efbe525a49b42 (diff) |
remove unused dotfiles in root
Diffstat (limited to '.github/workflows/cli.yml')
-rw-r--r-- | .github/workflows/cli.yml | 34 |
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 |