generated from pool/new_package
26 lines
545 B
YAML
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
|