Skip to content

Update dependency @lassi-js/kili to v0.3.16 #3

Update dependency @lassi-js/kili to v0.3.16

Update dependency @lassi-js/kili to v0.3.16 #3

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: 'bash'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.12"]
os: [macos-latest, ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: கணு தயாரிப்பு
uses: actions/setup-node@v4
with:
node-version: latest
- name: பைத்தான் நிருவல்
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: true
- run: curl -sSL https://pdm-project.org/install-pdm.py | python3 -
if: ${{ matrix.os !== 'windows-latest' }}

Check failure on line 45 in .github/workflows/tests-py.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests-py.yml (Line: 45, Col: 13): Unexpected symbol: '='. Located at position 13 within expression: matrix.os !== 'windows-latest' .github/workflows/tests-py.yml (Line: 48, Col: 13): Unexpected symbol: '='. Located at position 12 within expression: matrix.os=== 'windows-latest'
- run: powershell -ExecutionPolicy ByPass -c "irm https://pdm-project.org/install-pdm.py | py -"
if: ${{ matrix.os=== 'windows-latest' }}
- name: நிருவல்
run: cd பை && pdm install
- name: சோதனைகள்
run: cd பை && pdm cov && pdm run coverage xml
- name: Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}