Skip to content

removed duplicate file #3

removed duplicate file

removed duplicate file #3

Workflow file for this run

name: Build Package on Multiple OS and Python Versions
on:
push:
branches:
- dev_vm
jobs:
build:
name: Build Run (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
run: python -m pip install build
- name: Build package
run: python -m build