Bump github/super-linter from 5.0.0 to 6 #55
Workflow file for this run
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/checkout@v4.1.6 | |
- name: Run the sh-checker | |
uses: luizm/action-sh-checker@v0.8.0 | |
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/checkout@v4.1.6 | |
- 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 |