Files
test/.gitea/workflows/test.yaml
Andrii Nikitin fbbf788c92
Some checks failed
Integration tests / t (push) Failing after 53s
Experiment workflow
2026-02-23 14:31:57 +01:00

29 lines
636 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: pwd
run: pwd
working-directory: /opt/test/giwtf
- name: Run test
run: make test_local
working-directory: /opt/test/giwtf