This repository has been archived on 2024-02-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
teamcity-build-step-extensi…/.github/workflows/test.yaml
Gleb Koval 71d98e540b
Some checks failed
Test Workflow / Lint and test library (push) Has been cancelled
Steup CI (#1)
Setup Github actions CI to test and publish the library.

Reviewed-on: #1
2023-12-20 15:34:40 +00:00

29 lines
576 B
YAML

name: Test Workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint-and-test:
name: Lint and test library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
- name: Verify Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run checks
run: ./gradlew check