mirror of
https://github.com/aljazceru/ark.git
synced 2026-02-02 10:04:40 +01:00
* Rename arkd folder & drop cli * Rename ark cli folder & update docs * Update readme * Fix * scripts: add build-all * Add target to build cli for all platforms * Update build scripts --------- Co-authored-by: tiero <3596602+tiero@users.noreply.github.com>
25 lines
456 B
YAML
Executable File
25 lines
456 B
YAML
Executable File
name: ci_integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "server/**"
|
|
|
|
jobs:
|
|
test:
|
|
name: integration tests
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./server
|
|
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
|
|
|