-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade database versions * Upgrade dependencies * Enable caching of go modules * Adapt integration tests for macOS The hostname is different when docker runs in a VM, causing the tests to fail. * Add broken links checker
- Loading branch information
1 parent
1515abc
commit fff4140
Showing
7 changed files
with
71 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Broken Links Checker | ||
|
||
on: | ||
schedule: | ||
- cron: "0 5 * * *" | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
linkChecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Configure broken links checker | ||
run: | | ||
mkdir -p ./target | ||
echo '{ "aliveStatusCodes": [429, 200] }' > ./target/broken_links_checker.json | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'yes' | ||
config-file: ./target/broken_links_checker.json |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# Exasol Go SQL Driver 0.3.0 | ||
# Exasol Go SQL Driver 0.3.0, released 2022-02-16 | ||
|
||
Code name: CSV import | ||
|
||
## Summary | ||
|
||
This release allows the import of multiple local CSV files via SQL. | ||
This release allows the import of multiple local CSV files via SQL and makes the `ParseDsn()` function public. | ||
|
||
## Features | ||
|
||
* #15: Import of local CSV files | ||
* #47: Make parseDsn public | ||
* #47: Make `ParseDsn()` function public | ||
|
||
## Dependency Updates | ||
|
||
* Updated `github.com/gorilla/websocket v1.4.2` to `v1.5.0` | ||
* Updated `github.com/testcontainers/testcontainers-go v0.11.1` to `v0.12.0` |
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
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
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