Skip to content

feat: introduce @Feature annotation for feature toggling #288

feat: introduce @Feature annotation for feature toggling

feat: introduce @Feature annotation for feature toggling #288

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build-test:
name: "Unit Test On ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 11
- name: test
run: |
./gradlew clean
./gradlew :commons:test --stacktrace
./gradlew :intellij-idea:test --stacktrace