Skip to content

Bump hypothesis from 6.153.6 to 6.155.0 #1734

Bump hypothesis from 6.153.6 to 6.155.0

Bump hypothesis from 6.153.6 to 6.155.0 #1734

Workflow file for this run

name: DevContainer
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
permissions:
contents: read
jobs:
devcontainer:
name: DevContainer Build & Test
runs-on: ubuntu-latest
steps:
- name: "Harden the runner (Block egress traffic: Only allow calls to allowed endpoints)"
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: block
allowed-endpoints: >+
_http._tcp.deb.debian.org:443
*.data.mcr.microsoft.com:443
api.github.com:443
auth.docker.io:443
containers.dev:443
deb.debian.org:443
deb.debian.org:80
debian.map.fastlydns.net:443
debian.map.fastlydns.net:80
dl.google.com:443
files.pythonhosted.org:443
github.com:443
go.dev:443
index.rubygems.org:443
mcr.microsoft.com:443
nodejs.org:443
www.plantuml.com:443
plantuml.com:443
plantuml.com:80
production.cloudflare.docker.com:443
proxy.golang.org:443
pypi.org:443
registry-1.docker.io:443
registry.npmjs.org:443
rubygems.org:443
storage.googleapis.com:443
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Cache Docker layers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: /tmp/.buildx-cache
key: devcontainer-${{ runner.os }}-${{ github.sha }}
restore-keys: |
devcontainer-${{ runner.os }}-
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
- name: Build DevContainer image
uses: devcontainers/ci@b63b30de439b47a52267f241112c5b453b673db5 # v0.3.1900000449
with:
runCmd: |
echo "Installing test dependencies..."
pip install -e .[development,docs,casts]
echo "Running pre-commit checks..."
pre-commit run --all-files
echo "Running unit tests..."
python -m pytest tests
echo "Building documentation..."
make -C doc html
make -C doc/landing-page html