Skip to content

Commit

Permalink
adding tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nbingham1 committed Sep 25, 2024
1 parent 9cffedb commit aacbfa2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential ninja-build libqhull-dev libgraphviz-dev pax-utils curl

- name: Build binary
run: make
make
make test
shell: bash

- name: Build tests
run: make test
shell: bash

- name: Run tests
run: |
make check
shell: bash
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Loom   [![Build Status](https://github.com/broccolimicro/loom/actions/workflows/release.yml/badge.svg)](https://github.com/broccolimicro/loom/actions/workflows/release.yml) [![License](https://img.shields.io/badge/License-GNU_GPL_v3-blue.svg)](./COPYRIGHT) [![Documentation](https://img.shields.io/badge/Documentation-green.svg)](https://broccolimicro.github.io/loom)
# Loom   [![Release Status](https://github.com/broccolimicro/loom/actions/workflows/release.yml/badge.svg)](https://github.com/broccolimicro/loom/actions/workflows/release.yml) [![Documentation](https://img.shields.io/badge/Documentation-green.svg)](https://broccolimicro.github.io/loom)

Loom is a collection of tools for the design and verification of
asynchronous circuits. Not all of the tools are complete.
Expand Down

0 comments on commit aacbfa2

Please sign in to comment.