diff --git a/.Rbuildignore b/.Rbuildignore new file mode 100644 index 0000000..c503c4f --- /dev/null +++ b/.Rbuildignore @@ -0,0 +1 @@ +^\.github$ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..778d014 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: Bioconductor CI + +on: + push: + branches: [ devel, main, master, RELEASE_* ] + pull_request: + branches: [ devel, main, master, RELEASE_* ] + +jobs: + bioccheck: + # Required only if you set enable_pkgdown: true + # permissions: + # pages: write + # id-token: write + uses: bioconductor/workflows/.github/workflows/bioccheck.yml@main + with: + error_on: 'error' + enable_pkgdown: false + # Required only if you want test coverage via Codecov + # secrets: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}