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

26 lines
651 B
YAML

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