brokkr

Bytecode virtual machine for Valhalla.
git clone git://git.knutsen.co/brokkr
Log | Files | Refs | README | LICENSE

commit 776caec0aab8a79320538a55ec3882d3b05a0bf1
parent 33acabf456055883cc5101d9968694a872e834f8
Author: Demonstrandum <moi@knutsen.co>
Date:   Tue, 18 Feb 2020 15:39:49 +0000

Merge branch 'master' of github.com:valhalla-lang/brokkr

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