Skip to content

Commit

Permalink
Merge pull request #3 from cloudspannerecosystem/new-test-files
Browse files Browse the repository at this point in the history
Add a test of the build pipeline
  • Loading branch information
aseering authored Aug 16, 2023
2 parents b33e5f3 + bad96b1 commit b7e9620
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test the Build

on: push

# This job should be kept in sync with the job in `publish-to-test-pypi.yml`,
# except the version in this file shouldn't actually publish any changes,
# and should run on any push (not just a push to main).

jobs:
build:
name: Build Python 🐍 distributions 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
cat pyproject.toml ;
python3 -m
build
--sdist
--wheel
--outdir dist/
.
4 changes: 4 additions & 0 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- main

# This job should be kept in sync with the job in `build-test.yml`,
# except the version in that file should actually publish the built artifacts,
# not just validate that they build.

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
Expand Down

0 comments on commit b7e9620

Please sign in to comment.