Skip to content

Commit

Permalink
feat(ci): Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jubnzv committed Aug 29, 2022
1 parent 2a5feb9 commit 29d7166
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build

on:
- pull_request
- push

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install OS packages
run: sudo apt-get update && sudo apt-get install -yq python3 python3-pip libenchant-2-dev aspell-en
- name: Install Python packages
run: pip install -r requirements.txt
- name: Run spellcheck
run: pushd docs && make spell && popd
- name: Build HTML
run: pushd docs && make html && popd
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Scilla Docs

![](https://github.com/Zilliqa/scilla-docs/workflows/build/badge.svg)

Scilla short for Smart Contract Intermediate-Level LAnguage is a smart contract
language being developed for Zilliqa.

Expand Down

0 comments on commit 29d7166

Please sign in to comment.