Skip to content

Commit

Permalink
Add build status, docs and code style badges (#3)
Browse files Browse the repository at this point in the history
* Add build status, docs and code style badges

* Fix julia version string in actions file
  • Loading branch information
AntonReinhard authored Sep 2, 2024
1 parent ba14dca commit e37ec68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/formatter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: install Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.10
version: "1.10"
- name: Install Julia requirements
run: julia --project=${GITHUB_WORKSPACE}/.formatting -e 'import Pkg; Pkg.instantiate()'
- name: Check code style
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Julia environment
uses: julia-actions/setup-julia@v2
with:
version: '1.10'
version: "1.10"

- name: Instantiate
run: |
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# GraphComputing.jl

[![Build Status](https://github.com/GraphComputing-jl/GraphComputing.jl/actions/workflows/unit_tests.yml/badge.svg?branch=main)](https://github.com/GraphComputing-jl/GraphComputing.jl/actions/workflows/unit_tests.yml/)
[![Doc Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://graphcomputing-jl.github.io/GraphComputing.jl/dev/)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)

Represent computations as Directed Acyclic Graphs (DAGs), analyze and optimize them, then compile to native code and run!

## Usage
Expand Down

0 comments on commit e37ec68

Please sign in to comment.