Skip to content

Initial version of Cloud Console and IDP modified for Cloud Console #31

Initial version of Cloud Console and IDP modified for Cloud Console

Initial version of Cloud Console and IDP modified for Cloud Console #31

# Copyright 2024 Daniël Sonck, Piotr Łoboda.
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.txt.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the GNU Affero General Public License v3.0 only, included in the file
# licenses/AGPL.txt.
name: Lint and build voltaserve/migrations
on:
pull_request:
branches:
- main
paths:
- "migrations/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Lint using Clippy
run: cargo clippy --manifest-path migrations/Cargo.toml --all-features -- -D warnings
permissions:
contents: read
pull-requests: read
checks: write
build:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64, amd64
- name: Set Up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
context: ./migrations
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
platforms: linux/amd64,linux/arm64