mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com>
24 lines
482 B
YAML
24 lines
482 B
YAML
name: PR Gate
|
|
|
|
# This gate simply validates that we can build the docker container.
|
|
|
|
on:
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "true"
|
|
|
|
- name: Build Docker image
|
|
id: build
|
|
uses: useblacksmith/build-push-action@v2
|
|
with:
|
|
context: .
|