Merge pull request #1410 from DiceDB/arpit-config-v2 #2846
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: dice-test-suite | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- ".github/**" | |
- "**.txt" | |
- "**.json" | |
- "**.yaml" | |
- "**.yml" | |
- "LICENSE" | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- ".github/**" | |
- "**.txt" | |
- "**.json" | |
- "**.yaml" | |
- "**.yml" | |
- "LICENSE" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.x" | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: # Cache the Go modules | |
path: | | |
vendor/ | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- uses: dorny/paths-filter@v3 | |
id: file_types | |
with: | |
filters: | | |
watch_file_changes: | |
- '**/*.go' | |
- name: Install dependencies | |
run: go get -v . # Check if there is any version changes from the cache | |
- name: Build | |
run: make build | |
- name: Run Unit tests | |
if: steps.file_types.outputs.watch_file_changes == 'true' | |
run: make unittest | |
- name: Run Integration tests | |
if: steps.file_types.outputs.watch_file_changes == 'true' | |
run: make test |