v3.2.1: fixed minor issue with backwards compatibility with CM #1905
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: CM script automation features test | |
on: | |
pull_request: | |
branches: [ "master", "main", "dev" ] | |
paths: | |
- '.github/workflows/test-cm-script-features.yml' | |
- '**' | |
- '!**.md' | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.8"] | |
on: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: "${{ matrix.on }}" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- 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 | |
pip install -r requirements.txt | |
python -m pip install --ignore-installed --verbose pip setuptools | |
cd cm | |
python -m pip install . | |
cm init | |
- name: Run test_docker on linux | |
if: runner.os == 'linux' | |
run: | | |
python tests/script/test_docker.py | |
- name: Test CM Script Features | |
run: | | |
python tests/script/test_deps.py | |
python tests/script/test_install.py | |
python tests/script/test_features.py |