rust.yml (594B)
1 name: Rust 2 3 on: [push] 4 5 jobs: 6 build: 7 8 runs-on: ubuntu-latest 9 10 steps: 11 - uses: actions/checkout@v1 12 - name: Build 13 run: cargo build --verbose 14 # Currently not working as of https://github.com/rust-lang/rust/issues/64266 15 #- name: Run tests 16 # run: cargo test --verbose 17 - name: Build release 18 run: cargo build --release --verbose 19 - name: Upload bin 20 uses: actions/upload-artifact@v1.0.0 21 with: 22 # Artifact name 23 name: OSM_to_Euroscope 24 # Directory containing files to upload 25 path: target/release/OSM_to_Euroscope