Skip to content

Commit

Permalink
Create pattern_match.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
GopakumarRajappan authored Dec 11, 2023
1 parent 57a693b commit 7838491
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pattern_match.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Pattern match application

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

jobs:
Execute_code:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run Python code
run: python identify_parenthesis_pattern.py

- name: Run unittests
run: python -m unittest test_parenthesis_pattern.py

0 comments on commit 7838491

Please sign in to comment.