docs(license): rename LICENSE to LICENSE.md #6
This file contains hidden or 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: Core Tests | |
| on: | |
| push: | |
| branches: | |
| - development | |
| - main | |
| - stable | |
| pull_request: | |
| branches: | |
| - development | |
| - main | |
| - stable | |
| jobs: | |
| test: | |
| name: arcadia-core tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache Rust dependencies | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: Shared -> target | |
| - name: Run core tests | |
| run: cargo test -p arcadia-core --manifest-path Shared/Cargo.toml |