Skip to content

move system update process into a separate file #61

move system update process into a separate file

move system update process into a separate file #61

Workflow file for this run

name: CI for test actions
on:
push:
branches:
- 'main'
- 'feature/**'
- 'fix/**'
pull_request:
branches:
- 'main'
jobs:
test-host-system-install:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Install missing packages
run: sudo apt-get --no-install-recommends --yes install debootstrap
- name: Execute test
run: sudo ./test/test.sh install-system ALL
test-lxc-image-install:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Install missing packages
run: sudo apt-get --no-install-recommends --yes install debootstrap
- name: Execute test
run: sudo ./test/test.sh install-lxc-image ALL
test-docker-image-install:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Install missing packages
run: sudo apt-get --no-install-recommends --yes install debootstrap
- name: Execute test
run: sudo ./test/test.sh install-docker-image ALL