Skip to content

Update ruamel-yaml requirement from 0.18.6 to 0.18.7 #21

Update ruamel-yaml requirement from 0.18.6 to 0.18.7

Update ruamel-yaml requirement from 0.18.6 to 0.18.7 #21

Workflow file for this run

# run a very simple test against our test-input/ files
name: Check Test Inputs
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run test loop
run: sh test.sh