-
Notifications
You must be signed in to change notification settings - Fork 12
31 lines (28 loc) · 901 Bytes
/
dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: LangPort GitHub Actions for Development
run-name: LangPort GitHub Actions for Development
on:
push:
branches: [ "development" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11"]
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install LangPort
run: |
cd ${{ github.workspace }}
pip install --upgrade pip
pip install torch==2.1.2 -f https://download.pytorch.org/whl/torch_stable.html
pip install -e .
- name: Test LangPort
run: |
cd ${{ github.workspace }}
python -m unittest discover langport/tests