Skip to content

Bump alpine from 3.20 to 3.21 #90

Bump alpine from 3.20 to 3.21

Bump alpine from 3.20 to 3.21 #90

Workflow file for this run

name: Unit Tests
on:
push:
pull_request:
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up shell environment
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
shell: bash
- name: Run shellcheck
run: shellcheck scripts/upgrade.sh scripts/tests.sh
test:
name: Run Unit Tests
runs-on: ubuntu-latest
container:
image: busybox
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run unit tests
run: |
cd scripts
./tests.sh