Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Create GitHub Actions unit test workflow #15223

Merged
merged 7 commits into from
Nov 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Create GitHub Actions unit test workflow
  • Loading branch information
zvecr authored and tzarc committed Nov 19, 2021
commit 08636dd85adc6adccecd4479416f956575e88939
26 changes: 26 additions & 0 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Unit Tests

on:
push:
branches:
- master
- future
pull_request:
paths:
- 'quantum/**'
tzarc marked this conversation as resolved.
Show resolved Hide resolved
- 'tmk_core/**'
- 'tests/**'
- '*.mk'
- 'Makefile'
- '.github/workflows/unit_test.yml'

jobs:
build:
runs-on: ubuntu-latest

container: qmkfm/base_container

steps:
- uses: actions/checkout@v1
tzarc marked this conversation as resolved.
Show resolved Hide resolved
- name: Run tests
run: make test:all