Update test_diff.sh #6
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: PHP Script Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' # Specify your PHP version | |
extensions: bcmath, gmp | |
coverage: none | |
tools: none | |
- name: Verify PHP Installation | |
run: | | |
php -v | |
php -m | grep -i -E 'bcmath|gmp' | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' # Update to a supported Python version | |
- name: Install Python Dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install netaddr | |
- name: Run Test Script | |
run: | | |
chmod +x tests/test_diff.sh | |
./tests/test_diff.sh |