diff --git a/.github/workflows/test-parallel-windows.yaml b/.github/workflows/test-parallel-windows.yaml index 84035f0..90499fa 100644 --- a/.github/workflows/test-parallel-windows.yaml +++ b/.github/workflows/test-parallel-windows.yaml @@ -2,38 +2,38 @@ name: R-CMD-check on: push: - branches: - - master -pull_request: - branches: - - master + branches: + - master + pull_request: + branches: + - master jobs: R-CMD-check: - runs-on: windows-latest + runs-on: windows-latest -steps: - - uses: actions/checkout@v2 + steps: + - uses: actions/checkout@v2 -- uses: r-lib/actions/setup-r@v1 -with: - r-version: '4.0.5' # Substitua pela versão do R que você está usando + - uses: r-lib/actions/setup-r@v1 + with: + r-version: '4.0.5' # Substitua pela versão do R que você está usando -- uses: r-lib/actions/setup-pandoc@v1 + - uses: r-lib/actions/setup-pandoc@v1 -- name: Install dependencies -run: | - install.packages(c('remotes', 'testthat')) - remotes::install_github('prdm0/AcceptReject') - remotes::install_deps(dependencies = TRUE) -shell: Rscript {0} + - name: Install dependencies + run: | + install.packages(c('remotes', 'testthat')) + remotes::install_github('prdm0/AcceptReject') + remotes::install_deps(dependencies = TRUE) + shell: Rscript {0} -- name: Check package -run: | - devtools::check() -shell: Rscript {0} + - name: Check package + run: | + devtools::check() + shell: Rscript {0} -- name: Run tests -run: | - testthat::test_file("tests/testthat/test-time-parallel.R") -shell: Rscript {0} + - name: Run tests + run: | + testthat::test_file("tests/testthat/test-time-parallel.R") + shell: Rscript {0}