Skip to content

Commit 1f846f9

Browse files
committed
wip
1 parent c722b74 commit 1f846f9

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: jeffreyvr

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://github.com/contextr-dev/contextr/discussions/new?category=q-a
5+
about: Ask the community for help
6+
- name: Feature Request
7+
url: https://github.com/contextr-dev/contextr/discussions/new?category=ideas
8+
about: Share ideas for new features
9+
- name: Bug Report
10+
url: https://github.com/contextr-dev/contextr/issues/new
11+
about: Report a reproducable bug

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Run Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
tests:
10+
name: Run Pest PHP Tests
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
# Checkout the repository code
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
# Set up PHP environment
19+
- name: Setup PHP
20+
uses: shivammathur/setup-php@v2
21+
with:
22+
php-version: '8.2'
23+
extensions: mbstring, xml, json
24+
tools: composer:v2
25+
26+
# Install Composer dependencies
27+
- name: Install dependencies
28+
run: composer install --prefer-dist --no-progress
29+
30+
# Run Pest tests
31+
- name: Run tests
32+
run: ./vendor/bin/pest

0 commit comments

Comments
 (0)