added method link #516
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name : Run Tests - Unit | |
on: | |
push: | |
jobs: | |
checkout-code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check ok | |
run: | | |
pwd | |
ls -la | |
ls -la / | |
some-other-step: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check ok | |
run: | | |
pwd | |
ls -la | |
ls -la / | |
run-tests: | |
runs-on: ubuntu-latest | |
needs: | |
- checkout-code | |
- some-other-step | |
strategy: | |
matrix: | |
python-version: [ 3.7.17, 3.8.18, 3.9.19, 3.10.14, 3.11.9, 3.12.3 , 3.13.0-beta.1 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies (using Pip) | |
uses: ./.github/actions/install-dependencies-pytest | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run Unit Tests | |
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/run-unit-tests@main | |
with: | |
package_name : 'osbot_utils' | |
#codecov_token : ${{ secrets.CODECOV_TOKEN }} |