Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 405 Bytes

Readme.md

File metadata and controls

25 lines (19 loc) · 405 Bytes

cabal-outdated-action

Just run the cabal outdated command.

Usage

Save the following contents as .github/workflows/outdated.yml.

name: 'dependencies check'

on:
  push:
    branches: [main]
  pull_request:
  schedule:
    - cron: "00 15 * * *"

jobs:
  outdated:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: waddlaw/cabal-outdated-action@main