Skip to content

Commit

Permalink
test-ci: try to fix syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bertsky committed Dec 13, 2023
1 parent fe31d54 commit 83a0e35
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ jobs:
build-test:
runs-on: ubuntu-latest

steps:
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3

- name: Prepare
- name: Prepare
run: |
# 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'
# 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
run: make test

0 comments on commit 83a0e35

Please sign in to comment.