mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-31 17:14:46 +01:00
25 lines
450 B
YAML
Executable File
25 lines
450 B
YAML
Executable File
name: ci_integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "asp/**"
|
|
|
|
jobs:
|
|
test:
|
|
name: integration tests
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./asp
|
|
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
|
|
|