Indexer: Register every encountered file with the help of special "locations" #303
Workflow file for this run
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: indexer build tests | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| paths: | |
| - 'infra/indexer/**' | |
| - '.github/workflows/indexer_build.yml' | |
| jobs: | |
| indexer: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: # Needed for git diff to work. (get_changed_files) | |
| fetch-depth: 0 | |
| - run: | | |
| git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/master | |
| - name: Build indexer | |
| run: docker build -t indexer . | |
| working-directory: 'infra/indexer' |