Add the Intel NUC13 to the recommended hardware list; deprecate NUC10 #270
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, pull_request, workflow_call] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
# We use a standard Debian image to mirror a typical developer environment. | |
# This should be updated whenever a new Debian stable version is available. | |
container: debian:bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apt-get update && apt-get install --yes --no-install-recommends make python3-poetry | |
poetry install --no-ansi | |
- name: Run lint | |
run: | | |
make docs-lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build production deployment | |
run: | | |
podman build --build-arg GIT_BRANCH=$(git rev-parse HEAD) --file ./deploy/Dockerfile . |