updated main branch #14
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: EVENT_DEMO | |
on: | |
pull_request: | |
types: [opened, closed] | |
branches: | |
- main | |
workflow_dispatch: | |
# for filter check workflow syntax | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: josn event | |
run: echo "run ${{toJSON(github.event)}}" | |
- name: get code | |
uses: actions/checkout@v4 | |
- name: installdependency | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install opencv | |
run: pip install opencv-python | |
- name: check python version | |
run: python --version |