-
Notifications
You must be signed in to change notification settings - Fork 15
43 lines (36 loc) · 1018 Bytes
/
test-linux.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
name: "Testing - Linux"
on:
push:
branches:
- main
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
name: "Unit Tests on Linux (rust: ${{ matrix.config.rust }})"
strategy:
fail-fast: false
matrix:
config:
- { rust: 'stable' }
- { rust: 'nightly' }
timeout-minutes: 30
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
if: matrix.config.rust == 'nightly'
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Setup Build Environment
run: |
sudo apt-get update
sudo apt-get install -y build-essential libsodium-dev
# Unit tests "automatically" find and set `R_HOME` if it isn't set by
# calling `R RHOME`. See the testing version of `start_r()` for this.
- name: Run Unit Tests
id: test
run: |
cargo test --verbose