Skip to content

Initial attempt at GitHub Actions based CI. #7

Initial attempt at GitHub Actions based CI.

Initial attempt at GitHub Actions based CI. #7

Workflow file for this run

---
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
CI:
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
- name: Run pypi-install tests
run: |
earthly --ci +test-pypi-install
- name: Run 2and3 tests
run: |
earthly --ci +test-2and3