fix tests and CI #10
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
name: MetaCall Examples CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
- main | |
jobs: | |
LinuxUbuntuRun: | |
name: Linux - Ubuntu Run | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install MetaCall | |
run: | | |
sudo apt update | |
curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Run Tests Suits | |
run: | | |
pip install -r requirements.txt | |
find test-suites -type f -name "*.yaml" -exec python ./testing.py -f {} -V \; | |
# WindowsRun: | |
# name: Windows Run | |
# runs-on: windows-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: '3.12' | |
# - name: Install MetaCall | |
# shell: pwsh | |
# run: | | |
# powershell -NoProfile -ExecutionPolicy unrestricted -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; &([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing 'https://raw.githubusercontent.com/metacall/install/master/install.ps1')))" | |
# - name: Run Test Suits | |
# shell: pwsh | |
# run: | | |
# pip install pyyaml | |
# Get-ChildItem -Path test-suits -Filter *.yaml | ForEach-Object { python ./metacall-test.py -f $_.FullName -V } | |
# Clear-Host | |
# for /f %f in (failed-test-cases.txt) do type %f && exit /b 1 | |
# MacOSRun: | |
# name: MacOS Run | |
# runs-on: macos-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: '3.12' | |
# - name: Install MetaCall | |
# run: | | |
# curl -sL https://raw.githubusercontent.com/metacall/install/master/install.sh | sh | |
# - name: Run Tests Suits | |
# run: | | |
# pip install pyyaml | |
# find test-suits -type f -name "*.yaml" -exec python ./metacall-test.py -f {} -V \; | |
# clear | |
# for file in failed-test-cases.txt; do [ -s "$file" ] && cat failed-test-cases.txt && exit 1; done |