Skip to content

refresh CWL v1.0, v1.1 support results #453

refresh CWL v1.0, v1.1 support results

refresh CWL v1.0, v1.1 support results #453

Workflow file for this run

# This file is part of REANA.
# Copyright (C) 2020 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
name: CI
on: [push, pull_request]
jobs:
lint-shellcheck:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Runs shell script static analysis
run: |
sudo apt-get install shellcheck
./run-tests.sh --check-shellscript
build-docs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.6"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "14"
- name: Install project dependences
run: |
sudo apt-get update -y
gem install awesome_bot
pip install --upgrade pip
pip install -r requirements.txt
- name: Lint docs
run: ./run-tests.sh --check-docstyle
- name: Build docs
run: ./run-tests.sh --build-docs