fix: wrong handling of subsumptive clauses in magic transformers (#2567) #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Populate dependencies | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| VCPKG_FEATURE_FLAGS: dependencygraph | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Checkout vcpkg | |
| run: | | |
| git clone https://github.com/Microsoft/vcpkg.git | |
| cd vcpkg | |
| git checkout 6f29f12e82a8293156836ad81cc9bf5af41fe836 | |
| - name: Bootstrap vcpkg | |
| working-directory: vcpkg | |
| run: ./bootstrap-vcpkg.sh | |
| # This will execute a dry-run, meaning that libraries will not be built and | |
| # installed, but they will still be reported to the GitHub dependency graph. | |
| # This step assumes `vcpkg` has been bootstrapped (run `./vcpkg/bootstrap-vcpkg`) | |
| - name: Run vcpkg | |
| run: ${{ github.workspace }}/vcpkg/vcpkg install --dry-run --debug | |