mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-14 01:04:22 +01:00
19 lines
357 B
YAML
Executable File
19 lines
357 B
YAML
Executable File
name: ci_integration
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
name: integration tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ">1.17.2"
|
|
- uses: actions/checkout@v3
|
|
- run: go get -v -t -d ./...
|
|
- name: integration testing
|
|
run: make integrationtest
|
|
|