Skip to content

சின்ன பிழை #8

சின்ன பிழை

சின்ன பிழை #8

Workflow file for this run

name: எண்ணிக்கை பைத்தான்
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 }}
- run: curl -sSL https://pdm-project.org/install-pdm.py | python3 -
if: ${{ 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 }}