Skip to content

finding paths

finding paths #97

Workflow file for this run

name: MacM1
on:
push:
# paths:
# - '**.py'
# - '**.yml'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
run-tests:
name: Python ${{ matrix.python-version }}
runs-on: macos-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
max-parallel: 9
fail-fast: false
matrix:
python-version: ["3.8","3.9","3.10","3.11"]
steps:
- name: install chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
- name: install firefox
uses: browser-actions/setup-firefox@v1
with:
firefox-version: latest

Check failure on line 36 in .github/workflows/test-mac-m1.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-mac-m1.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
- name: remove native drivers
run: |
rm /usr/local/share/chromedriver-mac-arm64/chromedriver
# rm /usr/local/share/geckodriver
# rm /usr/local/share/msedgedriver
which geckodriver
which msedgedriver
################################################################################
# SETUP TEST
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox