Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DEFAULT_PATH=tests
8 changes: 8 additions & 0 deletions .github/CONTRIBUTIONS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Testing
* [Documentation](https://bashunit.typeddevs.com/)

## How to run the test

```bash
./lib/bashunit
```
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
pull_request:
push:
branches:
- main

name: Tests
jobs:
tests:
name: "Run tests"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- name: "Tests"
run: ./lib/bashunit
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
Loading