Skip to content

Commit

Permalink
Merge pull request #8 from CosmWasm/add-ci
Browse files Browse the repository at this point in the history
Test GH Action
  • Loading branch information
hashedone authored Feb 22, 2024
2 parents 8fdc08a + 650c900 commit c6518de
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
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: Update dependencies
run: sudo apt update && sudo apt upgrade -y
- name: Install plantuml
run: sudo apt-get install plantuml
- name: Install Rust
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Verify
on:
pull_request:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- 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: Install plantuml
run: sudo apt-get install plantuml
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install mdbook-plantuml
uses: actions-rs/cargo@v1
with:
command: install
args: mdbook-plantuml
- name: Deploy GitHub Pages
run: mdbook build

0 comments on commit c6518de

Please sign in to comment.