Skip to content

Commit

Permalink
Create yml file automation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
admeeer authored Oct 10, 2023
1 parent cd64293 commit bd8aa4b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: cicd

on:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: install
run: |
python -m pip install --upgrade pip
pip install pytest
- name: test
run: |
pytest

0 comments on commit bd8aa4b

Please sign in to comment.