Skip to content

Create LICENSE

Create LICENSE #7

Workflow file for this run

name: Test CI
on:
# Triggers the workflow on push and pull request events but only for pull_requests on the main branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually
workflow_dispatch:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
- name: Prepare
run: |

Check failure on line 25 in .github/workflows/test-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
# Rename example .env file
mv .env.example .env
# Set environment variables from .env file
export $(cat .env | xargs)
# Generate ssh keys
mkdir -p ./ssh
ssh-keygen -t rsa -q -f $MANAGER_KEY -P '' -C 'OCR-D manager key'
- name: Docker Compose build
run: docker compose build
- name: Test
run: make test