Specify standard SSSOM hashing algorithm #588
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
| # Built from: | |
| # https://docs.github.com/en/actions/guides/building-and-testing-python | |
| name: Build and test sssom | |
| on: | |
| pull_request: | |
| branches: [master] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.14"] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --all-groups | |
| - name: Run tests | |
| run: make test | |
| #---------------------------------------------- | |
| # YAML linting | |
| #---------------------------------------------- | |
| - name: Install Prettier | |
| run: npm install prettier | |
| - name: Lint YML | |
| run: npx prettier --check --prose-wrap always "**/*.yml" | |
| - name: Lint YAML | |
| run: npx prettier --check --prose-wrap always "**/*.yaml" |