Files
test/.gitea/workflows/test.yaml
Andrii Nikitin 3333a11d6c
Some checks failed
Integration tests / t (push) Failing after 0s
Experiment workflow
2026-02-23 14:28:40 +01:00

26 lines
545 B
YAML

name: Integration tests
on:
workflow_dispatch:
pull_request:
push:
branches: ['main', 'test']
env:
HOME: /opt
REPO_PATH: /opt/test
REPO_URL: http://src.opensuse.org//git-workflow/test.git
jobs:
t:
runs-on: linux-x86_64
steps:
- name: Checkout product
run: |
test -n /opt/test && rm -rf /opt/test
git config --global --add safe.directory /opt/test
git clone -q ${{ env.REPO_URL }} /opt/test
- name: Run test
run: make test_local
path: /opt/test/giwtf