Skip to content

Commit

Permalink
Add testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Apr 1, 2024
1 parent 2ebd9cc commit 430f547
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test a recheck

on:
workflow_dispatch:
inputs:
package_url:
description: 'URL to a source package tarball'
required: true

jobs:
recheck:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Test recheck
uses: r-universe-org/recheck@HEAD
with:
package: ${{ github.event.inputs.package_url }}
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: 'Delete packages'
description: 'Delete removed packages from the package server'
inputs:
package:
description: 'Name of the package'
description: 'Path or URL to source package tarball'
required: true
universe:
description: 'Which universe to check in'
required: false
runs:
using: 'docker'
image: 'docker://ghcr.io/r-universe-org/delete-packages'
image: 'docker://ghcr.io/r-universe-org/recheck'
env:
PACKAGE: ${{ inputs.package }}
UNIVERSE: ${{ inputs.universe }}

0 comments on commit 430f547

Please sign in to comment.