mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
19 lines
313 B
YAML
19 lines
313 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- test
|
|
|
|
jobs:
|
|
test-integration:
|
|
runs-on: [ubuntu-latest]
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with: { go-version: 1.19 }
|
|
|
|
- run: go install github.com/go-task/task/v3/cmd/task@latest
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: context=ci task dc:up
|