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.64"
|
|
- "v1.62"
|
|
- "v1.60"
|
|
- "v1.58"
|
|
- "v1.56"
|
|
- "v1.54"
|
|
- "v1.52"
|
|
- "v1.50"
|
|
env:
|
|
IONSCALE_TESTS_TS_TARGET_VERSION: ${{ matrix.ts_version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
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 |