Skip to content

Commit

Permalink
add ga
Browse files Browse the repository at this point in the history
  • Loading branch information
edzer committed Apr 17, 2024
1 parent 9b07e12 commit 4a8c73b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
\.travis\.yml
README.md
^\.github$
32 changes: 32 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
hexbin
======
[![Build Status](https://travis-ci.org/edzer/hexbin.png?branch=master)](https://travis-ci.org/edzer/hexbin) [![CRAN](http://www.r-pkg.org/badges/version/hexbin)](http://cran.rstudio.com/package=hexbin) [![Downloads](http://cranlogs.r-pkg.org/badges/hexbin?color=brightgreen)](http://www.r-pkg.org/pkg/hexbin)
<!-- badges: start -->
[![CRAN](http://www.r-pkg.org/badges/version/hexbin)](http://cran.rstudio.com/package=hexbin) [![Downloads](http://cranlogs.r-pkg.org/badges/hexbin?color=brightgreen)](http://www.r-pkg.org/pkg/hexbin)
[![R-CMD-check](https://github.com/edzer/hexbin/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/edzer/hexbin/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

An R Package with binning and plotting functions for hexagonal bins.

0 comments on commit 4a8c73b

Please sign in to comment.