Skip to content

Commit a42fedf

Browse files
committed
chore: Reduces MSRV to 1.75
1 parent 6eb4d9b commit a42fedf

File tree

8 files changed

+45
-2310
lines changed

8 files changed

+45
-2310
lines changed

.cargo/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[target.aarch64-apple-darwin]
2+
rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"]
3+
4+
[target.x86_64-apple-darwin]
5+
rustflags = ["-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup"]

.github/workflows/test.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test ixaccess R (Rust 1.65, R Latest)
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
test:
11+
name: Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Install Rust 1.75
18+
uses: actions-rs/toolchain@v1
19+
with:
20+
toolchain: 1.75
21+
profile: minimal
22+
override: true
23+
24+
- name: Run cargo test
25+
run: cargo test --verbose --package ixaccess-r

0 commit comments

Comments
 (0)