Skip to content

Commit

Permalink
Merge pull request #25 from dojoengine/ci-tests
Browse files Browse the repository at this point in the history
add ci-tests
  • Loading branch information
ponderingdemocritus committed Aug 11, 2023
2 parents 66566d7 + df87c49 commit 000374b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
name: mdbook test

steps:
- uses: actions/checkout@v3

- name: Install mdbook
run: |
mkdir mdbook
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.14/mdbook-v0.4.14-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Run tests
run: mdbook test

0 comments on commit 000374b

Please sign in to comment.