Skip to content

chore: added pr workflow for cicd #2

chore: added pr workflow for cicd

chore: added pr workflow for cicd #2

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Lint
run: make lint
- name: Test
run: make test