Skip to content

add tests for interval args #27

add tests for interval args

add tests for interval args #27

Workflow file for this run

name: Test OSX
permissions:
contents: write
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-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