Skip to content

Commit

Permalink
👷 add GitHub action to build package.
Browse files Browse the repository at this point in the history
  • Loading branch information
perillaroc committed Apr 8, 2024
1 parent a69287d commit 3339ebb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci-build

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install reki
run: |
python -m pip install -e .
- name: Build
run: |
python -m build

0 comments on commit 3339ebb

Please sign in to comment.