Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ name: Test
on:
push:
branches: [main]
paths-ignore:
- "**.md"
- LICENSE
- .gitattributes
pull_request:
branches: [main]
paths-ignore:
- "**.md"
- LICENSE
- .gitattributes

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion pgsync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
set -euo pipefail

VERSION="2.0.0"
VERSION="2.0.1"

QUIET=false
VERBOSE=false
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/cli.bats
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ setup() {
@test "version prints semver on stderr" {
run --separate-stderr "$PGSYNC" --version
[ "$status" -eq 0 ]
[ "$stderr" = "pgsync 2.0.0" ]
[ "$stderr" = "pgsync 2.0.1" ]
[ -z "$output" ]
}

Expand Down
Loading