generated from pool/new_package
30 lines
710 B
YAML
30 lines
710 B
YAML
name: test-podman-compose
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
env:
|
|
HOME: /root
|
|
REPO_PATH: /workspace/${{ gitea.repository }}
|
|
REPO_URL: https://gitea-actions-autobuild:${{ secrets.REPO_WRITE }}@$RUNNER_GITEA_DOMAIN/${{ gitea.repository }}.git
|
|
|
|
jobs:
|
|
submodule-check:
|
|
runs-on: linux-x86_64
|
|
steps:
|
|
- name: Checkout Code
|
|
run: |
|
|
test -n "${{ env.REPO_PATH }}" && rm -rfv "${{ env.REPO_PATH }}"/*
|
|
git config --global --add safe.directory ${{ env.REPO_PATH }}
|
|
git clone ${{ env.REPO_URL }} ${{ env.REPO_PATH }}
|
|
|
|
- name: Run make local
|
|
shell: bash
|
|
run: |
|
|
cd giwtf
|
|
make test_local
|
|
|