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-executors-test-task/.github/workflows/test.yaml
Gleb Koval e09bf9e9f8
All checks were successful
Test Workflow / Lint and test library (push) Successful in 1m43s
Publish Workflow / Publish library (push) Successful in 2m7s
Round-trip integration tests (#3)
- Implement round-trip tests for some cases.
- Run tests in CI.

Reviewed-on: #3
2023-12-30 16:42:51 +00:00

35 lines
799 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: Setup AWS Credentials
run: |
mkdir ~/.aws
echo ${{ secrets.aws_config }} | base64 -d > ~/.aws/config
echo ${{ secrets.aws_credentials }} | base64 -d > ~/.aws/credentials
- name: Run checks
run: ./gradlew check