Skip to content

Create test.yml

Create test.yml #1

Workflow file for this run

name: Publish to PyPI test
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Test tag
run: echo "Triggered by ${{ github.ref_name }}"