Skip to content

Commit

Permalink
[CI] Add install.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mmurooka committed Dec 1, 2024
1 parent 0d805bb commit e4b1b3c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 5 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Install of RoboManipBaselines

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
install:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install -e .
13 changes: 8 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: pre-commit of RoboManipBaselines
name: Pre-commit of RoboManipBaselines

on:
pull_request:
push:
branches: [master]
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]

0 comments on commit e4b1b3c

Please sign in to comment.