Skip to content

Commit

Permalink
add validatoR.yml gh action; remove pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
freestatman committed Oct 26, 2022
1 parent 8f83f46 commit 690ddab
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 28 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/validatoR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: R Package Validation report

on:
push:
branches:
- 'main'
- 'develop'

jobs:
r-pkg-validation:
name: Create report 📃
runs-on: ubuntu-latest
container:
image: rocker/verse:4.1.1
# Set Github token permissions
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
packages: write
deployments: write
steps:
- name: Checkout repo 🛎
uses: actions/checkout@v2

- name: Build report 🏗
id: validation
uses: insightsengineering/thevalidatoR@main
# see parameters above for custom templates and other formats

# Upload the validation report to the release
- name: Upload report to release 🔼
if: success()
uses: svenstaro/upload-release-action@v2
with:
file: ${{ steps.validation.outputs.report_output_filename }}
asset_name: ${{ steps.validation.outputs.report_output_filename }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
overwrite: false
28 changes: 0 additions & 28 deletions .pre-commit-config.yaml

This file was deleted.

0 comments on commit 690ddab

Please sign in to comment.