Skip to content

Use github actions instead of travis #1

Use github actions instead of travis

Use github actions instead of travis #1

Workflow file for this run

name: Test Package - dbs-pkg
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: install requirements
run: pip install -r requirements.txt
- name: test
run: pytest