Bump postcss-preset-env in /src/SJP.Schematic.Reporting #1751
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: mysql | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
db: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
tag: [8.0, 8.1, 8.2, latest] | |
services: | |
mysql: | |
image: mysql:${{ matrix.tag }} | |
env: | |
MYSQL_ROOT_PASSWORD: Schematic1234 | |
MYSQL_DATABASE: schematic | |
options: >- | |
--health-cmd "mysqladmin ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 3306:3306 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
working-directory: src/SJP.Schematic.MySql.Tests | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
working-directory: src/SJP.Schematic.MySql.Tests | |
- name: Test | |
run: dotnet test --no-restore --verbosity normal --collect:"XPlat Code Coverage" | |
working-directory: src/SJP.Schematic.MySql.Tests | |
env: | |
ConnectionStrings__MySql_TestDb: Server=localhost; Port=3306; Database=schematic; Uid=root; Pwd=Schematic1234; ConnectionTimeout=2 | |
- name: Coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |