slimhub_actions/.github/workflows/check_ubuntu.yml
2021-05-13 16:16:21 +06:00

28 lines
628 B
YAML

name: slimhub_actions Check on Ubuntu
on:
push:
branches: [ main ]
paths:
- 'cleanup.sh'
workflow_dispatch:
jobs:
cleanup:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
steps:
- uses: actions/checkout@main
- name: Cleanups
uses: rokibhasansagar/slimhub_actions@main
- name: Apt Checks
run: sudo apt list --installed
- name: Local Bin checks
run: ls -lAog /usr/local/bin
- name: Glbal Bin checks
run: ls -lAog /usr/bin
- name: Envirnment Variables Check
run: printenv | sort