mirror of
https://github.com/logos-messaging/packages.git
synced 2026-01-02 14:13:05 +00:00
18 lines
485 B
YAML
18 lines
485 B
YAML
on: pull_request
|
|
|
|
jobs:
|
|
default:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: iffy/install-nim@v5.0.4
|
|
with:
|
|
version: stable
|
|
- run: ./getmergebase.sh
|
|
- run: nim r -d:ssl -d:release package_scanner.nim packages.json --old=packages_old.json --check-urls
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|