Skip to content

Commit

Permalink
Hello world 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
cmpxchg16 committed Nov 29, 2023
1 parent 2ae4586 commit e4d6e01
Show file tree
Hide file tree
Showing 5 changed files with 796 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: "\U0001F41B Bug report"
about: Report a bug or unexpected behavior
title: ''
labels: bug
assignees: ''

---

### Describe the bug

A clear and concise description of what the bug is.

### Steps to reproduce the behavior

1. Type this '...'
2. View the output '....'
3. See error

### Expected vs actual behavior

A clear and concise description of what you expected to happen and what actually happened.

### Screenshots

If applicable, add screenshots to help explain your problem.

### Logs

Paste the activity. Redact if needed.

### Additional context

Add any other context about the problem here.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feedback.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: "\U0001F4E3 Feedback"
about: Give us general feedback
title: ''
labels: feedback
assignees: ''

---

# Feedback

You can use this template to give us structured feedback or just wipe it and leave us a note. Thank you!

## What have you loved?

_eg "adding skill in natural language is awesome!"_

## What was confusing or gave you pause?

_eg "it did something unexpected"_

## Are there features you'd like to see added?

_eg "Support more cloud providers, e.g Azure"_

## Anything else?

_eg "have a nice day"_
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/submit-a-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: "⭐ Submit a request"
about: Surface a feature or problem that you think should be solved
title: ''
labels: enhancement
assignees: ''

---

### Describe the feature or problem you’d like to solve

A clear and concise description of what the feature or problem is.

### Proposed solution

How will it benefit its users?

### Additional context

Add any other context like screenshots or mockups are helpful, if applicable.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: VibraniumDome CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

permissions:
contents: read

jobs:
vibraniumdome-shields:
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"

- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -

- name: Install Dependencies vibraniumdome-shields
run: /Users/runner/.local/bin/poetry install
working-directory: vibraniumdome-shields/

- name: Workaround for missing pytorch dependencies during poetry install
run: /Users/runner/.local/bin/poetry run pip install torch
working-directory: vibraniumdome-shields/

- name: Run Tests vibraniumdome-shields
run: /Users/runner/.local/bin/poetry run pytest
working-directory: vibraniumdome-shields/
Loading

0 comments on commit e4d6e01

Please sign in to comment.