mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 08:44:30 +00:00
38 lines
858 B
YAML
38 lines
858 B
YAML
|
# Built from:
|
||
|
# https://docs.github.com/en/actions/guides/building-and-testing-python
|
||
|
# https://github.com/snok/install-poetry#workflows-and-tips
|
||
|
---
|
||
|
name: Build and test nwb_schema_language
|
||
|
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
python-version: ["3.9", "3.10"]
|
||
|
|
||
|
steps:
|
||
|
|
||
|
- name: Check out repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Set up Python ${{ matrix.python-version }}
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: ${{ matrix.python-version }}
|
||
|
|
||
|
- name: Install Poetry
|
||
|
uses: snok/install-poetry@v1.3
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: poetry install --no-interaction --no-root
|
||
|
|
||
|
- name: Install project
|
||
|
run: poetry install --no-interaction
|
||
|
|
||
|
- name: Run test suite
|
||
|
run: make test
|