Skip to content

Commit

Permalink
feat!: initial v2 code
Browse files Browse the repository at this point in the history
We're going to iterate on this A Lot, but got to start somewhere!
  • Loading branch information
gadomski committed Feb 13, 2025
1 parent b3dfa27 commit 25010a1
Show file tree
Hide file tree
Showing 996 changed files with 4,109 additions and 465,040 deletions.
29 changes: 0 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/dependabot.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/pull_request_template.md

This file was deleted.

63 changes: 63 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: CI

on:
push:
branches:
- v2

jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Sync
run: uv sync
- name: Lint
run: scripts/lint
- name: Test
run: uv run pytest
- name: Test w/ validation extra
run: uv run pytest --extra validation
- name: Test w/ obstore extra
run: uv run pytest --extra obstore
build-docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- name: Sync
run: uv sync
- name: Build
run: uv run mkdocs build
- name: Upload
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: site/
deploy-docs:
name: Deploy docs
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build-docs
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
126 changes: 0 additions & 126 deletions .github/workflows/continuous-integration.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/release.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .pre-commit-config.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .readthedocs.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

Loading

0 comments on commit 25010a1

Please sign in to comment.