Skip to content

Add comparison between when and no-when #16

Add comparison between when and no-when

Add comparison between when and no-when #16

Workflow file for this run

on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'
- '**/*'
name: Test Action
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
os: [ "ubuntu-latest" ]
name: CI
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install -v && pdm info
- name: Lint
run: make lint
- name: Test
run: make test
- name: Publish on git tags
run: make publish
if: |
startsWith(github.ref, 'refs/tags/') &&
github.ref == 'refs/heads/main' &&
matrix.python-version == '3.8'
env:
PYPI_UNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}