58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
# ALR - Any Linux Repository
|
|
# Copyright (C) 2025 The ALR Authors
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
name: E2E
|
|
|
|
# on:
|
|
# push:
|
|
# branches: [ main ]
|
|
# pull_request:
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: altlinux.space/maks1ms/actions-container-runner:latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://github.com/actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: https://github.com/actions/setup-go@v5
|
|
with:
|
|
go-version: '1.24'
|
|
cache: false
|
|
|
|
# - name: Cache Podman images
|
|
# uses: actions/cache@v4
|
|
# with:
|
|
# path: |
|
|
# ~/.local/share/containers/storage
|
|
# /var/lib/containers/storage
|
|
# key: ${{ runner.os }}-primes
|
|
|
|
- name: Run E2E tests
|
|
env:
|
|
IGNORE_ROOT_CHECK: 1
|
|
run: |
|
|
make e2e-test
|