Rename zobrazeni tabulek to zobrazenitabulek.png #102
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Navigate to project directory | |
run: cd ${{ secrets.PROJECT_PATH }} | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
- name: Run tests | |
run: dotnet test --no-build --verbosity normal | |
- name: Publish | |
env: | |
DATABASE_USER: ${{ secrets.DATABASE_USER }} | |
DATABASE_PASSWORD: ${{ secrets.DATABASE_PASSWORD }} | |
DATABASE_PORT: ${{ secrets.DATABASE_PORT }} | |
DATABASE_HOST: ${{ secrets.DATABASE_HOST }} | |
DATABASE_SID: ${{ secrets.DATABASE_SID }} | |
run: | | |
# Your publish commands here |