mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-09-03 20:31:31 +00:00
* Adding GitHub workflow for checking PRs. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Added carriage return to end of document. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Adds build on push to master deploying to developmentHTML branch. Adds build on push to publish deploying to latestHTML branch. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Uncomment publish URL. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Renamed Travis CI/CD file to avoid running it. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com>
23 lines
441 B
YAML
23 lines
441 B
YAML
name: Check
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install dependencies
|
|
run: |
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
sudo apt-get install -y python3-setuptools
|
|
pip3 install --user -r requirements.txt
|
|
- name: Build the docs
|
|
run: |
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
make py
|
|
make htmlall
|
|
|