2021-11-19 23:04:11 +01:00
|
|
|
name: Unit Tests
|
|
|
|
|
2022-12-23 00:41:16 +01:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-11-19 23:04:11 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'builddefs/**'
|
|
|
|
- 'quantum/**'
|
|
|
|
- 'platforms/**'
|
|
|
|
- 'tmk_core/**'
|
|
|
|
- 'tests/**'
|
|
|
|
- '*.mk'
|
|
|
|
- 'Makefile'
|
|
|
|
- '.github/workflows/unit_test.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-03-17 02:32:09 +01:00
|
|
|
container: ghcr.io/qmk/qmk_cli
|
2021-11-19 23:04:11 +01:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 19:50:04 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-19 23:04:11 +01:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-04-13 10:00:18 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: pip3 install -r requirements-dev.txt
|
2021-11-19 23:04:11 +01:00
|
|
|
- name: Run tests
|
|
|
|
run: make test:all
|