pantry/.github/workflows/ci.yml
Jacob Heider 3245fb5fc8
just requires cargo to build (#4)
* just requires cargo to build

* add in .github workflows

* README deps
2022-10-31 14:00:24 -04:00

21 lines
485 B
YAML

name: ci
on: pull_request
jobs:
get-diff:
runs-on: ubuntu-latest
outputs:
diff: ${{ steps.diff.outputs.diff }}
steps:
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v6
id: diff
with:
PATTERNS: projects/**/package.yml
build:
needs: [get-diff]
uses: teaxyz/pantry.core/.github/workflows/build.yml@main
with:
projects: ${{ needs.get-diff.outputs.diff || 'zlib.net' }}
secrets: inherit