[#193] Enable integration tests in Forgejo Actions
Some checks failed
/ DCO (pull_request) Successful in 32s
/ Vulncheck (pull_request) Successful in 46s
/ Builds (pull_request) Successful in 1m11s
/ OCI image (pull_request) Successful in 1m18s
/ Lint (pull_request) Successful in 1m49s
/ Tests (pull_request) Successful in 52s
/ Integration tests (pull_request) Failing after 1m1s
Some checks failed
/ DCO (pull_request) Successful in 32s
/ Vulncheck (pull_request) Successful in 46s
/ Builds (pull_request) Successful in 1m11s
/ OCI image (pull_request) Successful in 1m18s
/ Lint (pull_request) Successful in 1m49s
/ Tests (pull_request) Successful in 52s
/ Integration tests (pull_request) Failing after 1m1s
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
This commit is contained in:
parent
4b782cf124
commit
1e82f64dfd
1 changed files with 16 additions and 0 deletions
|
@ -43,3 +43,19 @@ jobs:
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test
|
run: make test
|
||||||
|
|
||||||
|
integration:
|
||||||
|
name: Integration tests
|
||||||
|
runs-on: oci-runner
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: '1.23'
|
||||||
|
|
||||||
|
- name: Run integration tests
|
||||||
|
run: |-
|
||||||
|
podman-service.sh
|
||||||
|
make integration-test
|
||||||
|
|
Loading…
Add table
Reference in a new issue