initial gitea commit

This commit is contained in:
Lucas Jensen
2024-06-26 19:19:20 -07:00
commit e830445d02
47 changed files with 10936 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
name: build app
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: linux_amd64
strategy:
matrix:
node-version: [21.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install

View File

@@ -0,0 +1,25 @@
name: Portfolio Backend CI
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: linux_amd64
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Lint with black
run: |
black --check .