Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.xml - github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 224241604308dbff5c9eead373459fa2beef4ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<project name="nextcloud-tasks" basedir="." default="test">

	<property file="build.properties"/>

	<!-- test - Tests if the code syntax is correct and executes phpunit tests -->
	<target name="test">
		<apply executable="php" failonerror="true">
			<arg value="-l" />
			<fileset dir=".">
				<include name="**/*.php" />
				<exclude name="vendor/**/*" />
			</fileset>
		</apply>
	</target>

</project>