Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Test fixes

Test fixes #26

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker image without cache and run tests
run: |
docker build --no-cache -t lantern-test .
docker run --rm -v ${{ github.workspace }}/test:/test lantern-test /bin/bash -c "/test/run-all.sh || exit 1"