RLesur / crrri

A Chrome Remote Interface written in R
https://rlesur.github.io/crrri/
Other
157 stars 12 forks source link

switch CI to Github Actions #96

Closed cderv closed 4 years ago

cderv commented 4 years ago

Would be a good exercice and it will allow also windows build.

RLesur commented 4 years ago

Good idea!

I've tested whether Chrome was available in GHA 6 months ago. It was installed on linux and Windows. For macOS I had to install it with:

jobs:
    steps:
      - name: Install Chrome (only on macOS)
        if: runner.os == 'macOS'
        run: |
          brew update
          brew cask install google-chrome
cderv commented 4 years ago

Thanks this will help ! I’ll do that next.