Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/BachiLi/loma_public into main
Browse files Browse the repository at this point in the history
  • Loading branch information
BachiLi committed Apr 3, 2024
2 parents 5e94d3b + 739c28b commit 5c68b92
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Python Package using Conda

on: [push]

jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.14
uses: actions/setup-python@v3
with:
python-version: '3.10.14'
- name: Install dependencies
run: |
pip install -r requirements.txt
sudo apt update
sudo apt install snapd
sudo snap install ispc
- name: Running tests
run: |
cd tests
OPENCL_CTX='0:0' python test.py

0 comments on commit 5c68b92

Please sign in to comment.