Add new Axis (Line chart) #333
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Verify code correctness | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Init gradle | |
run: ./gradlew init | |
- name: Detekt | |
run: ./gradlew detekt | |
- name: Assemble | |
run: ./gradlew assemble | |
- name: Test | |
run: ./gradlew allTests |