From 36c39467ee7791088b304e90054e992f5defe59d Mon Sep 17 00:00:00 2001 From: Caleb Herpin Date: Wed, 28 Jul 2021 23:43:49 -0500 Subject: [PATCH] Added shell test --- .github/workflows/shell.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/shell.yml diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml new file mode 100644 index 00000000..25cacfa0 --- /dev/null +++ b/.github/workflows/shell.yml @@ -0,0 +1,21 @@ +name: Civet_Linux + +on: + push: + paths-ignore: + - 'docs/**' + - '.github/workflows/**' + - '!.github/workflows/shell.yml' + pull_request: + +jobs: + build: + runs-on: ubuntu-18.04 + container: docker://ubuntu:latest + - name: Update Package Manager + run: apt-get DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y tzdata + - name: Install dependencies + run: | + apt-get install -y net-tools + - name: Test connection + run: ping 8.8.8.8 \ No newline at end of file