8000 change docker image in unit-test action · davidfrantz/force@9ffc077 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

change docker image in unit-test action #5

change docker image in unit-test action

change docker image in unit-test action #5

Workflow file for this run

name: unit-testing
on:
push:
branches: ['*']
release:
types: [published]
repository_dispatch:
types: [udf-dispatch]
jobs:
testing:
name: Compile and run unit tests
runs-on: davidfrantz/base
steps:
- name: Compile all units
run: make unit-tests
- name: Test all units
run: make unit-testing
- name: Clean
run: make clean
0