-init-
This commit is contained in:
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -56,7 +56,7 @@ jobs:
|
|||||||
|
|
||||||
### Quick Install (Linux/macOS)
|
### Quick Install (Linux/macOS)
|
||||||
```bash
|
```bash
|
||||||
curl -sSL https://git.appmodel.nl/Tour/finish/main/docs/install.sh | bash
|
curl -sSL https://git.appmodel.nl/tour/finish/main/docs/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
### Homebrew (macOS)
|
### Homebrew (macOS)
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ CI/CD automation in `.github/workflows/`:
|
|||||||
|
|
||||||
### 1. Quick Install (Recommended)
|
### 1. Quick Install (Recommended)
|
||||||
```bash
|
```bash
|
||||||
curl -sSL https://git.appmodel.nl/Tour/finish/raw/branch/main/docs/install.sh | bash
|
curl -sSL https://git.appmodel.nl/tour/finish/raw/branch/main/docs/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
### 2. Debian/Ubuntu Package
|
### 2. Debian/Ubuntu Package
|
||||||
@@ -80,7 +80,7 @@ docker run -it ghcr.io/closedloop-technologies/finish:latest
|
|||||||
|
|
||||||
### 5. From Source
|
### 5. From Source
|
||||||
```bash
|
```bash
|
||||||
git clone https://git.appmodel.nl/Tour/finish.git
|
git clone https://git.appmodel.nl/tour/finish.git
|
||||||
cd finish
|
cd finish
|
||||||
./finish.sh install
|
./finish.sh install
|
||||||
```
|
```
|
||||||
|
|||||||
10
run_tests.sh
Normal file → Executable file
10
run_tests.sh
Normal file → Executable file
@@ -1,3 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
bats tests/
|
# Always run from the directory where this script lives
|
||||||
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
cd "$SCRIPT_DIR"
|
||||||
|
|
||||||
|
# Execute the tests
|
||||||
|
bash ./tests/test_finish.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user