apivolve 0.1.1

Apivolve is an API evolution tool, it helps keep your APIs backwards compatible yet clean, and generates client/server code in a variety of languages.
Documentation

# GENERATED: This file is automatically updated by 'Bump dependencies', local changes will be overwritten!

name: 'Test & lint'

on:
  push:
    branches:
      - 'main'
      - 'master'
  pull_request:
  workflow_dispatch:

jobs:
  checks:
    name: Test & lint
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Read config
        id: conf
        run: |
          echo "STRICT::$([ "$(jq '.test_lint' -r ci-conf.json)" != false ] && [ "$(jq '.test_lint.lint_strict' -r ci-conf.json)" != false ] && echo 1 || echo 0)" | tee -a  $GITHUB_OUTPUT
          echo "TEST::$([ "$(jq '.test_lint' -r ci-conf.json)" != false ] && [ "$(jq '.test_lint.test' -r ci-conf.json)" != false ] && echo 1 || echo 0)" | tee -a  $GITHUB_OUTPUT
          echo "LINT::$([ "$(jq '.test_lint' -r ci-conf.json)" != false ] && [ "$(jq '.test_lint.lint' -r ci-conf.json)" != false ] && echo 1 || echo 0)" | tee -a  $GITHUB_OUTPUT
          echo "FMT::$([ "$(jq '.test_lint' -r ci-conf.json)" != false ] && [ "$(jq '.test_lint.fmt' -r ci-conf.json)" != false ] && echo 1 || echo 0)" | tee -a  $GITHUB_OUTPUT
      - name: Run test, lint, fmt
        uses: docker/build-push-action@v2
        with:
          file: ./ci/test-lint.Dockerfile
          context: .
          build-args: |
            STRICT=${{ steps.conf.outputs.STRICT }}
            TEST=${{ steps.conf.outputs.TEST }}
            LINT=${{ steps.conf.outputs.LINT }}
            FMT=${{ steps.conf.outputs.FMT }}
          push: false