Skip to content

Commit

Permalink
my_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zsigmas committed Sep 17, 2024
1 parent 4de305c commit ca5aab6
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/mytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
name: Test and QC 🧪

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
push:
branches:
- main
workflow_dispatch:

concurrency:
group: test-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
TEMPLATE_REF: main
TEMPLATE_REPO: boehringer-ingelheim/dv.templates

jobs:
test:
name: ${{ vars.CI_IMAGE }}
runs-on: ubuntu-latest
container:
image: ${{ vars.CI_IMAGE }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout project ⬇️
uses: actions/checkout@v4

- name: Install package dependencies 📄
uses: boehringer-ingelheim/dv.templates/.github/actions/dependencies@main

- name: Test and QC2 🧪
run: Rscript build.R

- name: Archive snap results ⬆️
uses: actions/upload-artifact@v4
with:
name: snap_results
path: tests/testthat/_snaps

0 comments on commit ca5aab6

Please sign in to comment.