Skip to content

chore: Add GitHub Actions workflow for CI #2

chore: Add GitHub Actions workflow for CI

chore: Add GitHub Actions workflow for CI #2

Workflow file for this run

name: Python CI Workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Since you're only using a built-in library, no other installations are needed.
- name: Run tests
run: |
python test_calc.py