Initial attempt at GitHub Actions based CI. #16
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: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Earthly | |
uses: earthly/actions-setup@v1 | |
- name: Lint | |
run: | | |
earthly --ci +lint | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu:focal" | |
- "debian:bullseye" | |
- "ubuntu:jammy" | |
- "debian:bookworm" | |
# TODO(astraw/stdeb#195) | |
# - "ubuntu:noble" | |
# - "debian:trixie" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Earthly | |
uses: earthly/actions-setup@v1 | |
- name: Build | |
run: | | |
earthly --ci +build --OS=${{matrix.os}} | |
packaging-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu:focal" | |
- "debian:bullseye" | |
- "ubuntu:jammy" | |
- "debian:bookworm" | |
# TODO(astraw/stdeb#195) | |
# - "ubuntu:noble" | |
# - "debian:trixie" | |
needs: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Earthly | |
uses: earthly/actions-setup@v1 | |
- name: Run tests | |
run: | | |
earthly --ci +test --OS=${{matrix.os}} | |
pypi-install-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu:focal" | |
- "debian:bullseye" | |
- "ubuntu:jammy" | |
- "debian:bookworm" | |
# TODO(astraw/stdeb#195) | |
# - "ubuntu:noble" | |
# - "debian:trixie" | |
needs: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Earthly | |
uses: earthly/actions-setup@v1 | |
- name: Run pypi-install tests -- | |
run: | | |
earthly --ci +test-pypi-install --OS=${{matrix.os}} | |
twoandthree-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu:focal" | |
- "debian:bullseye" | |
- "ubuntu:jammy" | |
- "debian:bookworm" | |
# TODO(astraw/stdeb#195) | |
# - "ubuntu:noble" | |
# - "debian:trixie" | |
needs: build | |
runs-on: ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Earthly | |
uses: earthly/actions-setup@v1 | |
- name: Run pypi-install tests -- | |
run: | | |
earthly --ci +test-pypi-install --OS=${{matrix.os}} | |
- name: Run 2and3 tests | |
run: | | |
earthly --ci +test-2and3 --OS=${{matrix.os}} |