Skip to content

Add INSTALL.txt

Add INSTALL.txt #67

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
product:
- product/ap
- product/fk
- product/ma
- product/md
- product/ng
- product/pg
- product/rs
- '.'
steps:
- uses: actions/checkout@v2
- name: Test
run: for f in ${{ matrix.product }}/t/*.sh ; do $f && continue; echo FAIL $f; exit 1; done
env:
ENVIRON_TEST_IMAGE: opensuse/leap