Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Disable command-check (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruzickap authored Sep 17, 2020
1 parent d4c9600 commit cff4f1a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/vuepress-build-check-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,25 @@ jobs:
- name: Run mdspell
run: find . -type f \( -name "*.md" ! -name "CHANGELOG.md" \) | xargs --max-args=1 --verbose mdspell --ignore-numbers --ignore-acronyms --report --en-gb

command-check:
name: Command check
runs-on: ubuntu-18.04
# command-check:
# name: Command check
# runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@v2
# steps:
# - uses: actions/checkout@v2

- name: Update repositories
run: sudo apt-get update
# - name: Update repositories
# run: sudo apt-get update

- name: Install necessary tools
run: |
sudo apt-get install -y -qq gnupg2 jq pv > /dev/null
curl -s -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
curl -s -Lo kind https://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-linux-amd64 && chmod +x kind && sudo mv kind /usr/local/bin/
# - name: Install necessary tools
# run: |
# sudo apt-get install -y -qq gnupg2 jq pv > /dev/null
# curl -s -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
# curl -s -Lo kind https://github.com/kubernetes-sigs/kind/releases/download/v0.6.0/kind-linux-amd64 && chmod +x kind && sudo mv kind /usr/local/bin/

- name: Run tests
run: |
tests/tests.sh
# - name: Run tests
# run: |
# tests/tests.sh

vuepress-build-check-deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit cff4f1a

Please sign in to comment.