Skip to content

Makefile

Makefile #13

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.
name: Makefile
on:
workflow_dispatch:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.1.1']
env:
version: 0.2.0
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}
- name: Install X11 and other dependencies on MacOS
if: runner.os == 'macOS'
run: |
make github-mac-install
make github-mac-run
- name: Upload package build
uses: actions/upload-artifact@v3
with:
name: pantcl4r_${{ env.version }}.tar.gz
path: pantcl4r_${{ env.version }}.tar.gz