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

Run Lua Tests in CI

Run Lua Tests in CI #4

Workflow file for this run

name: Check PR
on: [pull_request]
jobs:
run-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Image
run: |
docker build --target lua -f processing.Dockerfile -t testIMG .
- name: Run Tests
run: |
docker run -v ./processing:/processing testIMG busted /processing/topics/ -p %.test%.lua$