Skip to content

Commit

Permalink
Update ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Oct 10, 2024
1 parent 18694e7 commit a39a9e6
Showing 1 changed file with 5 additions and 30 deletions.
35 changes: 5 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,36 +70,11 @@ jobs:
#############################################
## Install package and its dependencies
#############################################
- name: Install Python
uses: actions/setup-python@v3
with:
python-version: '3.11'

- name: Setup pip cache
uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/Python
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements.optional.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install libXML2
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends libxml2
- name: Install pip
run: |
python -m pip install pip==23.0.0
python -m pip install pip==23.0.0
python -m pip --version
#python -m pip install --upgrade setuptools
#python -m setuptools --version
- name: Install package
run: |
python -m pip install .[all]
# install package
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
with:
python-version: "3.11"

#############################################
## Lint
Expand Down

0 comments on commit a39a9e6

Please sign in to comment.