From ba86818bebc708e164becb7858d01993d38fa0a2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 18 Jul 2023 09:49:09 +0200 Subject: [PATCH] GitHub Action to test the install process --- .github/workflows/test_install.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/test_install.yml diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml new file mode 100644 index 0000000..10a91fa --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,19 @@ +name: test_install +on: + pull_request: + branches: [master] + push: + branches: [master] +jobs: + test_install: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + cache: 'pip' + - run: pip install --upgrade pip + - run: pwd + - run: ls -hal + - run: echo "1\n" | ./install.sh