Use workspace folder instead of CWD for file paths in test #221
Workflow file for this run
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
name: Continuous integration | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Check out CSL styles | |
run: | | |
cd .. | |
git clone --depth 1 https://github.com/citation-style-language/styles | |
- run: cargo build | |
- run: cargo test --features csl-json |