Skip to content

fix: change endpoints to pollination.solutions #350

fix: change endpoints to pollination.solutions

fix: change endpoints to pollination.solutions #350

name: CI
on: [push, pull_request]
jobs:
test:
name: "Unit Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
- name: Test with pytest
run: |
python -m pytest
deploy:
name: "Semantic Release"
needs: test
if: success() && github.ref == 'refs/heads/master' && github.base_ref == ''
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: set up node
uses: actions/setup-node@v4
with:
node-version: 22.2.0
- run: npx semantic-release@^23.1.1
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}