Skip to content

Commit

Permalink
Add osc-cli tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryohkhn committed Aug 12, 2024
1 parent 768f553 commit c14c723
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
push:
branches: [ ci-tests ]

permissions:
pull-requests: write
contents: write

jobs:
oapi-cli-tests:
runs-on: ubuntu-22.04
Expand All @@ -14,5 +18,18 @@ jobs:
run: |
sudo apt-get update --fix-missing
sudo apt-get install -y -f -o Acquire::Retries=3 jq libjson-c-dev libcurl4-openssl-dev pkg-config cargo
- name: tests
run: ./scripts/oapi-cli-tests.sh
- name: oapi-cli local tests
run: ./scripts/oapi-cli-tests.sh
osc-cli-tests:
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.version }}
- name: osc-cli local tests
run: ./scripts/osc-cli-tests.sh

0 comments on commit c14c723

Please sign in to comment.