File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
src/main/kotlin/frc/robot/subsystems Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Gradle Build
2
+
3
+ on :
4
+ push :
5
+ branches : [ $default-branch ]
6
+ pull_request :
7
+ branches : [ $default-branch ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Set up JDK 11
15
+ uses : actions/setup-java@v2
16
+ with :
17
+ java-version : ' 11'
18
+ distribution : ' adopt'
19
+ - name : Gradle Build
20
+ run : ./gradlew build
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ import edu.wpi.first.wpilibj2.command.SubsystemBase
12
12
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard
13
13
import frc.robot.Constants
14
14
import kotlin.math.IEEErem
15
+ import kotlin.math.abs
16
+ import kotlin.math.min
15
17
16
18
/* *
17
19
* Drivetrain subsystem
You can’t perform that action at this time.
0 commit comments