mirror of
https://github.com/jsiebens/ionscale.git
synced 2026-03-31 15:07:49 +01:00
38 lines
767 B
YAML
38 lines
767 B
YAML
name: Integration Tests
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
integration:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ts_version:
|
|
- "v1.80"
|
|
- "v1.78"
|
|
- "v1.76"
|
|
- "v1.74"
|
|
- "v1.72"
|
|
- "v1.70"
|
|
- "v1.68"
|
|
- "v1.66"
|
|
env:
|
|
IONSCALE_TESTS_TS_TARGET_VERSION: ${{ matrix.ts_version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache: true
|
|
- name: Run Integration Tests
|
|
run: |
|
|
go test -v ./tests |