alessio is testing bashrcd #20
Workflow file for this run
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: Build and test bashrcd | |
run-name: ${{ github.actor }} is testing bashrcd | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: List files in the repository | |
run: | | |
bash tests/test_envvars.sh | |
bash tests/test_override_bashrcd.sh | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run shellcheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
severity: error | |
ignore_paths: ./tests/* |