diff options
| author | Adam Janovsky | 2022-05-20 11:12:03 +0200 |
|---|---|---|
| committer | Adam Janovsky | 2022-05-20 11:12:03 +0200 |
| commit | 2cf170fd73d06af577e471d7cd125538e3283c4a (patch) | |
| tree | eac46245516deb6428c3a102bd0e0b0674ff9089 /.github/workflows | |
| parent | 10b3b57c8df3e467df2f8fbc617c25a6c0d578d5 (diff) | |
| parent | 279d732e16347ffc08506330cb269887f86d8e61 (diff) | |
| download | sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.tar.gz sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.tar.zst sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.zip | |
merge main
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3cba8d28..06861ed0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,9 +21,11 @@ jobs: - name: Setup python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: "3.8" - name: Install python dependencies run: pip install -r requirements/requirements.txt + - name: Download spacy language model + run: python -m spacy download en_core_web_sm - name: Install pytest and package run: | pip install -r requirements/test_requirements.txt |
