Skip to content

Commit

Permalink
ci: Updae test GHA (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored Aug 7, 2023
1 parent c7f2d9f commit a8ffd23
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Required OS dependencies
- name: Install OS dependencies
run: |
Expand All @@ -40,25 +40,23 @@ jobs:
sudo cp aex bap /bin
# Python
- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.8
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -c constraints.txt
pip install -r requirements.dev.txt
# Ruby
- name: Set up Ruby
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
with:
ruby-version: 2.7
uses: ruby/setup-ruby@v1
- name: Install dependencies
run: bundle install
# Node
- name: Set up Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
Expand All @@ -75,4 +73,4 @@ jobs:
- name: Upload coverage to Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3

0 comments on commit a8ffd23

Please sign in to comment.