Skip to content

Skips raman soddyite ssm json -> jsonld due to scidatalib error #25

Skips raman soddyite ssm json -> jsonld due to scidatalib error

Skips raman soddyite ssm json -> jsonld due to scidatalib error #25

Workflow file for this run

name: Code checks
on:
push:
branches:
- '*'
jobs:
lint:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Lint
run: make docker-lint
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Lint
run: make docker-test
coverage:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Lint
run: make docker-coverage
publish-container-image:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
needs: [lint]
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push to local registry
uses: docker/build-push-action@v4
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ghcr.io/smart-spectral-matching/ssm-service-file-converter:${{ github.ref_name }}-${{github.sha}}