1
0

Add workflow badge to README.md

This commit is contained in:
Jeff 2025-02-12 18:41:04 -05:00
parent fb5eac1307
commit d21bb2cbdc
2 changed files with 23 additions and 1 deletions

21
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Dust Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

View File

@ -1,4 +1,4 @@
# Dust
# Dust ![Tests](https://github.com/solaeus/dust/actions/workflows/rust.yml/badge.svg)
**Fast**, **safe** and **easy-to-use** general-purpose programming language.
@ -23,6 +23,7 @@ fn fib (n: int) -> int {
write_line(fib(25))
```
## Highlights
- Easy to read and write