File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 fail-fast : false
2020 matrix :
2121 config :
22- - { os: macos -latest, r: "release" }
23- - { os: ubuntu -latest, r: "devel", http-user-agent : "release" }
22+ - { os: ubuntu -latest, r: "release" }
23+ # - { os: macos -latest, r: "release" }
2424
2525 env :
2626 GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -158,5 +158,5 @@ pre-commit run --all-files
158158### Continuous integration
159159
160160We use Github Actions to run continuous integration (CI) checks on each push and pull request. Specifically, we run:
161- * [ R CMD check] ( .github/workflows/R-CMD-check.yaml ) on Linux, macOS, and Windows and
161+ * [ R CMD check] ( .github/workflows/R-CMD-check.yaml ) on multiple platforms and
162162* [ covr test coverage] ( .github/workflows/covr.yaml ) .
Original file line number Diff line number Diff line change @@ -5,3 +5,6 @@ rm -f src/Makevars
55
66# Removing compilation files
77rm -f src/* .o src/tskit/* .o src/* .so
8+
9+ # Removing other files not needed for distribution
10+ rm -f WORDLIST
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- # Removing Makevars autogenerated via configure from src/Makevars.win.in
3+ # Removing Makevars autogenerated via configure from src/Makevars.in
4+ # (yes, the same template for all platforms)
45rm -f src/Makevars.win
56
67# Removing compilation files
78rm -f src/* .o src/tskit/* .o src/* .dll
9+
10+ # Removing other files not needed for distribution
11+ rm -f WORDLIST
You can’t perform that action at this time.
0 commit comments