Skip to content

Commit

Permalink
Merge branch 'master' into php81-support
Browse files Browse the repository at this point in the history
  • Loading branch information
osma committed Feb 9, 2023
2 parents cb96e56 + b13b2c4 commit 417ae45
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 10 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

## URL address of the page where you encountered the problem

## Description of the problem
Steps to produce the problem, and the expected outcome after it has been fixed

## Additional information (e.g. screenshots) about the problem

## The browser you used when the problem appeared
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

## Description of the enhancement

## Who are the users that would benefit from the enhancement and how?

## What new functionalities would the enhancement make possible?

## Why is the enhancement important?
10 changes: 0 additions & 10 deletions ISSUE_TEMPLATE.md

This file was deleted.

7 changes: 7 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,12 @@
putenv('SKOSMOS_SPARQL_ENDPOINT=http://localhost:13030/skosmos-test/sparql');
}

# Allow running git commands in the php-actions/phpunit container
# (prevent "dubious ownership" error; /app is owned by another user, not root)
if (getenv('GITHUB_ACTIONS') === 'true' ) {
mkdir('/home/runner');
exec('git config --global --add safe.directory /app');
}

require_once(__DIR__ . '/../vendor/autoload.php');
require_once(__DIR__ . '/../model/Model.php');

0 comments on commit 417ae45

Please sign in to comment.