osm-to-euroscope

A tool to generate Radar Screens from OSM Data
git clone git://archive.git.mtrnord.blog/MTRNord/osm-to-euroscope.git
Log | Files | Refs | README | LICENSE

rust.yml (607B)


      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     # Disabled to current compiler problems :/ 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