Skip to content

Update to Betty 0.3.0b4 #25

Update to Betty 0.3.0b4

Update to Betty 0.3.0b4 #25

Workflow file for this run

name: Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the source code
uses: actions/checkout@v4
- name: Get the pip cache directory
run: echo "pip_cache_dir=$(pip cache dir)" >> $GITHUB_ENV
shell: bash
- name: Cache pip
uses: actions/cache@v3
with:
path: ${{ env.pip_cache_dir }}
key: pip-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles('./setup.py') }}
restore-keys: |
pip-${{ runner.os }}-${{ matrix.python }}-
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Build the development environment
run: |
./bin/build-dev
shell: bash
- name: Run the tests
run: |
./bin/test
shell: bash