Skip to content

Automated tests for increment version #20

Automated tests for increment version

Automated tests for increment version #20

Workflow file for this run

name: "Automated tests for increment version"
on:
push:
paths:
- '.github/workflows/auto-tests.yml'
- 'increment.sh'
- 'tests/**'
pull_request:
workflow_dispatch:
jobs:
ci-test:
name: "Automatic tests"
runs-on: ubuntu-latest
steps:
- name: 📥 Check out repository
uses: actions/checkout@v4
- name: 🧰 Check and Install jq
run: |
if command -v jq >/dev/null 2>&1; then
echo "✅ jq ist bereits installiert."
jq --version
else
echo "⚠️ jq ist nicht installiert. Installation wird durchgeführt..."
sudo apt update && sudo apt install -y jq
jq --version
fi
- name: 🧪 Matrix tests
run: bash tests/run-tests.sh --manual