Skip to content

Commit

Permalink
test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
msterle committed Mar 26, 2024
1 parent bfa9c42 commit c28adf6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,25 @@ jobs:
else
echo "No shell scripts with #!/bin/sh shebang found."
fi
test:
name: Run shellspec
runs-on: ubuntu-latest

steps:
- name: Install shellspec
run: |
cd ~
wget https://github.com/shellspec/shellspec/archive/0.28.1.tar.gz
tar xzvf 0.28.1.tar.gz
mkdir ~/.local/bin
ln -s ~/shellspec-0.28.1/bin/shellspec ~/.local/bin/
- name: Check out code
uses: actions/checkout@v4

#- name: Setup upterm session
# uses: lhotari/action-upterm@v1

- name: Run shellspec
run: shellspec

0 comments on commit c28adf6

Please sign in to comment.