Skip to content

Commit

Permalink
add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sopermaf committed Dec 9, 2023
1 parent 367f06f commit 6a87abb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and Publish

on:
push:

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install hatch
- name: Build wheel
run: hatch -v build -t wheel:standard
- name: Publish
run: |
echo 'do something'
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ __pycache__
.venv*/
.vscode/settings.json
*.egg-info
dist

0 comments on commit 6a87abb

Please sign in to comment.