Bump gaurav-nelson/github-action-markdown-link-check (#32) #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-license-identifier: Apache-2.0 | |
############################################################################## | |
# Copyright (c) 2022 | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Apache License, Version 2.0 | |
# which accompanies this distribution, and is available at | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
############################################################################## | |
name: Check Demos | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
jobs: | |
check-format: | |
name: Check scripts format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Run the sh-checker | |
uses: luizm/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SHFMT_OPTS: -i 4 -s | |
with: | |
sh_checker_shellcheck_disable: true | |
check-containerd: | |
name: Check demo for Containerd runtime on Ubuntu Virtual Environment | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Install dependencies | |
run: deployment/install.sh | |
- name: Configure environment | |
working-directory: ./deployment | |
run: ./configure.sh | |
- name: Running demo | |
working-directory: ./deployment | |
run: ./demo.sh |