Skip to content

Make CPE matching case insensitive #15

Make CPE matching case insensitive

Make CPE matching case insensitive #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v26
- uses: cachix/cachix-action@v14
with:
name: devenv
- name: Install devenv.sh
run: |
nix profile install nixpkgs#devenv
devenv just install-versions
- name: Check linting, formatting
run: devenv shell just check
- name: Run all tests
run: devenv shell just test-all