mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-09 13:49:04 -07:00
064484ff4d
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: functional test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- name: set up go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.25"
|
|
- name: build sif
|
|
run: make
|
|
- name: run sif with features
|
|
run: |
|
|
./sif -u https://example.com -dnslist small -dirlist small -dork -git -whois -cms -framework
|
|
if [ $? -eq 0 ]; then
|
|
echo "Sif ran successfully"
|
|
else
|
|
echo "Sif exited with an error"
|
|
exit 1
|
|
fi
|
|
|
|
- name: test module system
|
|
run: |
|
|
echo "Listing modules..."
|
|
./sif -lm
|
|
echo "Running all modules..."
|
|
./sif -u https://example.com -am
|
|
if [ $? -eq 0 ]; then
|
|
echo "Module system working"
|
|
else
|
|
echo "Module system failed"
|
|
exit 1
|
|
fi
|