Skip to content

fix performance issues and add polling to download #41

fix performance issues and add polling to download

fix performance issues and add polling to download #41

name: Test Linux
permissions:
contents: write
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Restore
run: dotnet restore
working-directory: ./GithubBackup
- name: Build
run: dotnet build GithubBackup.sln --configuration Release --no-restore
working-directory: ./GithubBackup
- name: Test
run: dotnet test GithubBackup.sln --configuration Release --no-restore
working-directory: ./GithubBackup