feat: add multiple test execution
This commit is contained in:
parent
937fa5f529
commit
4944b6ecc0
5 changed files with 71 additions and 31 deletions
31
.github/workflows/github-actions.yml
vendored
31
.github/workflows/github-actions.yml
vendored
|
@ -1,31 +0,0 @@
|
|||
name: GitHub Actions
|
||||
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
|
||||
on: [push]
|
||||
jobs:
|
||||
lint-shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: install shellcheck
|
||||
run: sudo apt-get install -y shellcheck
|
||||
- name: checkout repo
|
||||
uses: actions/checkout@main
|
||||
- name: lint files against shellcheck
|
||||
run: make lint_shellcheck
|
||||
lint-shfmt:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: install shfmt
|
||||
run: sudo apt-get install -y shfmt
|
||||
- name: checkout repo
|
||||
uses: actions/checkout@main
|
||||
- name: lint files against shfmt
|
||||
run: make lint_shfmt
|
||||
test-setup-linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: install soft
|
||||
run: sudo apt install -y tmux git
|
||||
- name: checkout repo
|
||||
uses: actions/checkout@main
|
||||
- name: test setup
|
||||
run: ./tests/linux_setup_plugin_and_run.sh
|
Loading…
Add table
Add a link
Reference in a new issue