Skip to content

Commit

Permalink
GitHub doesn't actually support YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
drbrain committed Jun 6, 2024
1 parent 0552e3b commit 382f7e2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 20
steps:
- name: Prepare symlink configuration
- name: Enable symlinks
run: git config --global core.symlinks true
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
test_ubuntu:
runs-on: ubuntu-latest
steps: &test-steps
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
Expand All @@ -24,4 +24,11 @@ jobs:

test_windows:
runs-on: windows-latest
steps: *test-steps
steps:
- name: Enable symlinks
run: git config --global core.symlinks true
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 382f7e2

Please sign in to comment.