Skip to content

Commit

Permalink
πŸ‘· python library buildcheck ci (#150)
Browse files Browse the repository at this point in the history
* πŸ‘· python library buildcheck ci

* πŸ› update rye install script

* πŸ› install script 2

* 🚧

* 🚧

* πŸ› fix: checkout v2 -> v4
  • Loading branch information
comavius authored Feb 24, 2025
1 parent 0f59d55 commit 33abe8d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build check(python)

on:
push:
branches: ["develop"]
pull_request:
branches: ["develop"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install rye
run: curl -sSf https://rye.astral.sh/get | RYE_VERSION="0.43.0" RYE_INSTALL_OPTION="--yes" bash

- name: Build check
run: |
source $HOME/.rye/env
rye sync
source .venv/bin/activate

0 comments on commit 33abe8d

Please sign in to comment.