Skip to content

Feat/teachable senseBox Eye #299

Feat/teachable senseBox Eye

Feat/teachable senseBox Eye #299

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
# Controls when the action will run.
on:
# Triggers the workflow on pull request events but only for the main branch
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 40
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build docker test container
run: docker build -t sketches-test --target test --no-cache .
- name: Run docker test container
run: docker run -v ${{ github.workspace }}/ctrf:/app/ctrf sketches-test
- name: Publish Test Report with Insights
uses: ctrf-io/github-test-reporter@v1
with:
report-path: './ctrf/*.json'
pull-request-report: true
overwrite-comment: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: always()