Add testbench as action
Run the tests for a working verification of xtcl. / build (ubuntu-20.04) (push) Failing after 1m20s
Details
Run the tests for a working verification of xtcl. / build (ubuntu-20.04) (push) Failing after 1m20s
Details
This commit is contained in:
parent
d129dc76ac
commit
0eb4b8573c
|
@ -0,0 +1,27 @@
|
|||
name: Run the tests for a working verification of xtcl.
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-20.04]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Prepare system
|
||||
run: |
|
||||
apt-get update -qy
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt-get install -y curl
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
|
||||
- name: Run test rule using cargo
|
||||
run: |
|
||||
cargo test
|
Loading…
Reference in New Issue