Skip to content

Commit

Permalink
Merge branch 'main' of github.com:carnegiemellonracing/driverless int…
Browse files Browse the repository at this point in the history
…o main
  • Loading branch information
GeoffTheJetson committed Oct 5, 2023
2 parents d9cabdb + 2cc0234 commit 4569993
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/dv-tasking-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: DV Tasking Issue
about: Issue template for subteam tasking
title: "[SUBTEAM]-[Project name]"
labels: ''
assignees: ''

---

## Task Description:
...

## Task Check-list:
- [ ] ...
- [ ] Write integration tests
- [ ] Add Documentation (to Confluence too)
- [ ] Open Pull Request

## Task Timeline:
- [ ] Update [Jira](cmr.red/jira) with Task Timeline

Comment any questions and tag reviewers.
11 changes: 11 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Pull Request
Addresses Issue #__ ([issue name])

### Description
Explain any proposed changes here.

### Check-list
- [ ] Integration tests pass
- [ ] Code Documented (and Confluence documentation updated)
- [ ] Reviewer 1 approved

45 changes: 45 additions & 0 deletions .github/workflows/fsdv-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: cmr-fsdv

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

jobs:
build:

runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install --upgrade --upgrade-strategy eager -r requirements.txt
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

# - name: Lint with flake8
# run: |
# # stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest

0 comments on commit 4569993

Please sign in to comment.