Skip to content

[DEPENDABOT]: Bump codecov/codecov-action from 3.1.1 to 4.4.1 #599

[DEPENDABOT]: Bump codecov/codecov-action from 3.1.1 to 4.4.1

[DEPENDABOT]: Bump codecov/codecov-action from 3.1.1 to 4.4.1 #599

Workflow file for this run

name: Build spectrum_io Package
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python: [3.8, 3.9]
steps:
- uses: actions/checkout@v4
name: Check out source-code repository
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Poetry
run: |
pip install poetry
poetry --version
- name: Build package
run: poetry build --ansi
- name: Install required twine packaging dependencies
run: pip install setuptools wheel twine
- name: Check twine package
run: twine check dist/*