Skip to content

Commit

Permalink
chore: some updates
Browse files Browse the repository at this point in the history
  • Loading branch information
harveyghq committed Jun 30, 2024
1 parent ddc335b commit 04c8a2e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,33 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: ${{ matrix.python }}
cache: pip
# Set this option if you want the action to check for the latest available version that satisfies the version spec.
# check-latest: # optional
- name: Install requirements
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
sudo apt update && sudo apt install graphviz
- name: Cache wabt
id: cache-wabt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: wabt-1.0.32
key: wabt
Expand Down
Empty file modified requirements.txt
100755 → 100644
Empty file.

0 comments on commit 04c8a2e

Please sign in to comment.