valhallac

Compiler for set-theoretic programming language.
git clone git://git.knutsen.co/valhallac
Log | Files | Refs | README | LICENSE

commit e898f61baff425c9d125fab09187649b69ed739a
parent ece0a0bff17b70d82041c27d09098b3ae4a72c0d
Author: Fredrik <moi@knutsen.co>
Date:   Fri, 20 Dec 2019 00:15:51 +0000

Create rust.yml
Diffstat:
A.github/workflows/rust.yml | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose