just check out both repositories in the CI job

This commit is contained in:
Michael Zhang 2022-01-10 16:57:59 -06:00
parent e4b34a7c50
commit 73a3c19ad5
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 12 additions and 2 deletions

View file

@ -4,13 +4,24 @@ jobs:
build:
runs-on: windows-2019
steps:
# Check out code
- uses: actions/checkout@v2
with:
path: editor
- uses: actions/checkout@v2
repository: iptq/libosu
with:
path: libosu
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: |
- name: build
working-directory: editor
run: |
cargo build --release
- uses: actions/upload-artifact@v2
working-directory: editor
with:
name: editor.exe
path: target/release/editor.exe

View file

@ -34,7 +34,6 @@ gfx_device_gl = "0.16.2"
[dependencies.libosu]
path = "../libosu"
version = "*"
[features]
clippy = []