Skip to content

CI Build

CI Build #16

Workflow file for this run

name: CI Build
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
workflow_dispatch:
schedule:
- cron: 0 5 * * 1
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install coveralls
- run: pip install nose
- run: ./ci/start-ci.sh 3.2.29
- run: nosetests -vv --with-coverage --cover-xml --cover-erase --cover-package=pyorient