Skip to content

Adding a very basic CI test that just installs the shell. #1

Adding a very basic CI test that just installs the shell.

Adding a very basic CI test that just installs the shell. #1

Workflow file for this run

name: Most Basic ASGS Shell Install
on:
push:
branches:
- ci-test
pull_request:
branches:
- ci-test
jobs:
run-bash-script:
runs-on: ubuntu-22.04
steps:
# Step 1: Check out the repository code
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Run the bash script
- name: Run install script
run: |
chmod +x ./ci/01-install-shell-only.sh # Make the script executable
./ci/01-install-shell-only.sh # Run the script