Skip to content

Proceed with mappings #125

Proceed with mappings

Proceed with mappings #125

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get -y install --no-install-recommends raptor2-utils jq
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests and coverage report
run: |
./tests/test_api.sh
coverage report -m