Skip to content

QD-6470 Update releases.json #57

QD-6470 Update releases.json

QD-6470 Update releases.json #57

Workflow file for this run

name: 'CI'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
platform: [ linux/amd64 ] # linux/arm64
os: [ ubuntu-latest ]
version: [ 2023.3, 2023.2 ]
linter: [ android-community, dotnet, go, js, jvm, jvm-community, php, python, python-community ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: Hadolint
# uses: hadolint/[email protected]
# with:
# dockerfile: ${{ matrix.version }}/${{ matrix.linter }}/Dockerfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v4
with:
tags: jetbrains/qodana-${{ matrix.linter }}:${{ matrix.version }}
context: ${{ matrix.version }}/${{ matrix.linter }}
platforms: ${{ matrix.platform }}
push: false
cache-from: type=gha
cache-to: type=gha,mode=max