-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (49 loc) · 1.21 KB
/
interview_prep.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: InterviewPrep
on:
push:
branches: [main]
jobs:
rust-tests:
name: Rust tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Run Rust tests
run: |
cd interview_prep/algorithm/rust
cargo test
python-tests:
name: Python tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run Python tests
run: |
cd interview_prep/algorithm/python3
python3 -m unittest discover -s . -p '*test.py'
java-tests:
name: Java tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: 21
distribution: 'corretto'
- name: Build and test Java
run: |
cd interview_prep/algorithm/java
./mvnw test