Skip to content

fix link in doc string #316

fix link in doc string

fix link in doc string #316

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
branches:
- main
- develop
jobs:
test-lint-build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build Docker Image
run: make build
- name: Build sky.db
run: make db CI=true
- name: Check Lint
run: make lint CI=true
- name: Check Format
run: make format CI=true ARGS=--check
- name: Run Tests
run: make test CI=true
- name: Check Image Hashes
run: make check-hashes CI=true
- name: Build PIP Package
run: make flit-build
test-python-3-10:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run Tests - Python 3.10
run: make test-3.10 CI=true
test-python-3-11:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run Tests - Python 3.11
run: make test-3.11 CI=true
test-python-3-12:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run Tests - Python 3.12
run: make test-3.12 CI=true
# Python 3.13 not supported yet, needs investigation!
# test-python-3-13:
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - name: Run Tests - Python 3.13
# run: make test-3.13 CI=true