Skip to content

test: fix integration tests #47

test: fix integration tests

test: fix integration tests #47

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
# [1.15.x, 1.16.x]
go-version: [1.20.x]
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test ./...
- name: Integration test
run: |
curl -LO https://github.com/Orange-OpenSource/hurl/releases/download/1.4.0/hurl_1.4.0_amd64.deb
sudo dpkg -i hurl_1.4.0_amd64.deb
integration/run.sh