Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

COSI-29: Produce multi-architecture Docker images #61

COSI-29: Produce multi-architecture Docker images

COSI-29: Produce multi-architecture Docker images #61

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.23.2
# Install Ginkgo CLI
- name: Install Ginkgo CLI
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: make test
dev-container-build:
permissions:
contents: read
packages: write
uses: scality/workflows/.github/workflows/docker-build@feature/PTFE-2104-support-platforms

Check failure on line 36 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

invalid value workflow reference: workflow file should have either a '.yml' or '.yaml' file extension
with:
context: .
name: cosi
namespace: ${{ github.repository_owner }}
tag: ${{ github.sha }}
platforms: linux/amd64,linux/arm64