Create s3_backup_file.sh #2
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
name: Bash Script Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Bash | |
run: | | |
sudo apt update | |
sudo apt install -y bash | |
- name: Run Bash script tests | |
run: | | |
find . -type f -name "*.sh" -exec bash -n {} \; |