mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
29 lines
531 B
YAML
29 lines
531 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.11]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: pip install .[tests] pytest-md pytest-emoji
|
|
|
|
- uses: pavelzw/pytest-action@v2
|
|
with:
|
|
emoji: true
|
|
verbose: true
|
|
job-summary: true
|