8000 all branches · davidfrantz/force@eced52f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

all branches

all branches #2

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: ubuntu-latest
steps:
- name: Test all units
run: make unit-testing
- name: Clean
run: make clean
0