Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
194 changes: 0 additions & 194 deletions .github/workflows/ci-cd.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: basic-ci

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Run tests
run: pytest
env:
ENVIRONMENT: testing
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ wheels/
# IDE
.vscode/
.idea/
.github/
*.swp
*.swo
*~
Expand Down
3 changes: 3 additions & 0 deletions LinkedIn_Data_Export/Certifications.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Name,Url,Authority,Started On,Finished On,License Number
AWS Certified Solutions Architect – Associate,https://aws.amazon.com/verification,Amazon Web Services (AWS),Jan 2022,Jan 2025,AWS-DEC-123456
Certified Kubernetes Administrator (CKA),,The Linux Foundation,Mar 2021,Mar 2024,CKA-1900-002
5 changes: 5 additions & 0 deletions LinkedIn_Data_Export/Connections.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
First Name,Last Name,Email Address,Company,Position,Connected On
Sarah,Johnson,,Google,Product Manager,12 Dec 2023
Michael,Ross,,Pearson & Specter,Senior Associate,15 Nov 2023
Emily,Wong,emily.wong.test@example.com,Stripe,Software Engineer,02 Aug 2022
David,Miller,,TechNova Inc.,CTO,10 Oct 2021
2 changes: 2 additions & 0 deletions LinkedIn_Data_Export/Education.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
School Name,Start Date,End Date,Notes,Degree Name,Activities,Societies
University of California Berkeley,2014,2018,"Graduated with Honors, GPA 3.8",Bachelor of Science (BS) Computer Science,Robotics Club,Eta Kappa Nu
4 changes: 4 additions & 0 deletions LinkedIn_Data_Export/Languages.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Name,Proficiency
English,Native or bilingual proficiency
Mandarin,Professional working proficiency
Spanish,Elementary proficiency
4 changes: 4 additions & 0 deletions LinkedIn_Data_Export/Positions.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Company Name,Title,Description,Location,Started On,Finished On
TechNova Inc.,Senior Backend Engineer,Leading the migration from monolith to microservices using Go and gRPC. Mentoring 3 junior developers.,San Francisco Bay Area,Oct 2021,
WebSol Solutions,Software Developer,Full-stack development using React and Node.js. Optimized database queries reducing load times by 40%.,"Austin, Texas",Jun 2018,Sep 2021
StartUp X,Junior Developer Intern,Assisted in UI updates and bug fixes for the mobile application.,Remote,Jan 2018,May 2018
2 changes: 2 additions & 0 deletions LinkedIn_Data_Export/Profile.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
First Name,Last Name,Maiden Name,Address,Birth Date,Headline,Summary,Industry,Zip Code,Geo Location,Twitter Handles,Websites,Instant Messengers
Alex,Chen,,San Francisco,1990-05-15,Senior Software Engineer | Cloud Architect,Passionate developer with 8+ years of experience in building scalable distributed systems. Enjoys hiking and open source contributing.,Technology,94105,US:56,achen_dev,[www.alexchendev.com],
11 changes: 11 additions & 0 deletions LinkedIn_Data_Export/Skills.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Name
Python
Go (Golang)
AWS (Amazon Web Services)
Docker
Kubernetes
System Design
React.js
PostgreSQL
CI/CD
Agile Methodologies
Loading