Skip to content

Bump nlohmann::json version #115

Bump nlohmann::json version

Bump nlohmann::json version #115

Workflow file for this run

name: build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: build-and-push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
no-cache: ${{ inputs.clean_build == true }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=local,dest=./build_output
cache-from: type=gha
cache-to: type=gha,mode=max
- uses: actions/upload-artifact@v4
name: Upload Artifact
with:
path: ./build_output