support batch insert of binary data in mysql #313
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: .Net Core Tests | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOTNET_VERSION: '8.0.x' | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "*" ] | |
paths: | |
- "**" | |
- "!**.md" | |
jobs: | |
unit-tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests | |
run: dotnet test SqlcGenCsharpTests | |
end2end-tests: | |
name: End-to-End Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Load .env file | |
uses: xom9ikk/[email protected] | |
with: | |
load-mode: strict | |
- name: Docker compose | |
uses: hoverkraft-tech/[email protected] | |
- name: Run Tests | |
run: ./end2end/scripts/run_tests.sh |