aqua-vscode/.github/workflows/run-tests.yml
renovate[bot] 3c1d2c30e0
chore(deps): update dependency vscode to v1.92.1 (#112)
* chore(deps): update dependency vscode to v1.92.1

* chore(ci): setup ssh session on failure

* fix(ci): ignore fcli setup error

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: folex <0xdxdy@gmail.com>
2024-08-12 15:17:23 +03:00

35 lines
799 B
YAML

name: 'test'
on:
pull_request:
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/tests.yml'
- '!.github/workflows/run-tests.yml'
push:
branches:
- 'main'
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/tests.yml'
- '!.github/workflows/run-tests.yml'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
tests:
name: 'Integration tests'
uses: ./.github/workflows/tests.yml
with:
ref: ${{ github.ref }}
unit-tests:
name: 'Unit tests'
uses: ./.github/workflows/unit-tests.yml
with:
ref: ${{ github.ref }}