Skip to content

Commit

Permalink
Added workflow for building
Browse files Browse the repository at this point in the history
  • Loading branch information
jithu7432 committed Jun 30, 2024
1 parent 047bc9b commit 47cb5f7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/blank.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on:
push: ["master"]
pull_request:

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build Package
run: |
python -m build

0 comments on commit 47cb5f7

Please # to comment.