Skip to content

Commit

Permalink
add github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wkcn committed Jun 18, 2024
1 parent 4eec938 commit a297590
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: linux-x64-gcc
on: [push, pull_request]
jobs:
linux-x64-gcc:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
pip install --upgrade pip
pip install -v -e .
pip install coveralls nose
- name: cpu-test
run: nosetests -s --with-coverage

0 comments on commit a297590

Please sign in to comment.