update changelog for 0.3.0 release #277
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
schedule: | |
# Weekly Monday 9AM build | |
- cron: '0 9 * * 1' | |
jobs: | |
tox: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: Python 3.12 Schema validation tests | |
python-version: '3.12' | |
os: ubuntu-latest | |
toxenv: py312 | |
- name: Python 3.11 Schema validation tests | |
python-version: '3.11' | |
os: ubuntu-latest | |
toxenv: py311 | |
- name: Python 3.10 Schema validation tests | |
python-version: '3.10' | |
os: ubuntu-latest | |
toxenv: py310 | |
- name: Python 3.9 Schema validation tests | |
python-version: 3.9 | |
os: ubuntu-latest | |
toxenv: py39 | |
- name: Twine check | |
python-version: 3.9 | |
os: ubuntu-latest | |
toxenv: twine | |
- name: Code style checks | |
python-version: 3.9 | |
os: ubuntu-latest | |
toxenv: codestyle | |
- name: macOS | |
python-version: 3.9 | |
os: macos-latest | |
toxenv: py39 | |
- name: Windows | |
python-version: 3.9 | |
os: windows-latest | |
toxenv: py39 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run tox | |
run: tox -e ${{ matrix.toxenv }} | |
asdf-astropy-dev: | |
name: Run asdf-astropy development tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout asdf-coordinates-schemas | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
path: asdf-coordinates-schemas | |
- name: Checkout asdf-astropy dev | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
repository: astropy/asdf-astropy | |
ref: main | |
path: asdf-astropy | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install asdf-coordinates-schemas | |
run: cd asdf-coordinates-schemas && pip install . | |
- name: Install asdf-astropy | |
run: cd asdf-astropy && pip install -e .[test] | |
- name: Pip Freeze | |
run: pip freeze | |
- name: Run asdf-astropy development tests | |
run: cd asdf-astropy && pytest |