fix(ontoweave)!: allow mapping several times the same data file #26
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| workflow_call: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| #---------------------------------------------- | |
| # checkout repo and set-up python and uv | |
| #---------------------------------------------- | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Python and uv | |
| uses: ./.github/actions/setup | |
| #---------------------------------------------- | |
| # install dependencies | |
| #---------------------------------------------- | |
| - name: Install dependencies | |
| uses: ./.github/actions/install | |
| #---------------------------------------------- | |
| # run tests and code quality checks | |
| #---------------------------------------------- | |
| - name: Run tests | |
| uses: ./.github/actions/test | |