Files
ark/.github/workflows/ark.intergation.yaml
Pietralberto Mazza 0210d39866 Monorepo scaffolding (#16)
* Change scaffolding

* Fix gh action
2023-11-27 14:23:22 +01:00

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