Skip to content

Commit

Permalink
Build (but not publish) during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Nov 24, 2023
1 parent 030092d commit bb99e46
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/check-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
run: choco install wget unzip
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install .[ja]
pip install .[ko]
python3 -m pip install --upgrade pip
pip3 install .[dev]
pip3 install .[ja]
pip3 install .[ko]
- name: Lint with Mypy
run: mypy sacrebleu scripts test
- name: Lint with Ruff
Expand All @@ -53,3 +53,5 @@ jobs:
- name: CLI bash test suite
shell: bash
run: ./test.sh
- name: Build
run: python3 setup.py sdist bdist_wheel

0 comments on commit bb99e46

Please sign in to comment.