-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Nimaoth/Absytree
- Loading branch information
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,7 +165,7 @@ jobs: | |
name: Run tests | ||
runs-on: ubuntu-latest | ||
container: | ||
image: "nimlang/nim:2.0.2-regular" | ||
image: "ubuntu:22.04" | ||
volumes: | ||
- ${{ github.workspace }}:/app | ||
steps: | ||
|
@@ -180,8 +180,15 @@ jobs: | |
- name: Install stable rust toolchain | ||
uses: dtolnay/[email protected] | ||
|
||
- name: add Absytree as git safe.directory so nimble can install stuff | ||
- uses: iffy/install-nim@v5 | ||
with: | ||
version: binary:2.0.6 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: add project dir as git safe.directory so nimble can install stuff | ||
run: git config --global --add safe.directory /__w/Absytree/Absytree | ||
continue-on-error: true | ||
|
||
- name: Cache nimble modules | ||
id: cache-nimble | ||
|