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

commit 4825ee28dcd8df50748874dcc5e55f4fdef39323
parent 043e693ab3700244c97f50934a9150e72e073385
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Tue, 31 Dec 2019 02:19:37 +0100

Create rust.yml
Diffstat:
Arust.yml | 25+++++++++++++++++++++++++
1 file changed, 25 insertions(+), 0 deletions(-)

diff --git a/rust.yml b/rust.yml @@ -0,0 +1,25 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + # Disabled to current compiler problems :/ https://github.com/rust-lang/rust/issues/64266 + #- name: Run tests + # run: cargo test --verbose + - name: Build release + run: cargo build --release --verbose + - name: Upload bin + uses: actions/upload-artifact@v1.0.0 + with: + # Artifact name + name: OSM_to_Euroscope + # Directory containing files to upload + path: target/release/OSM_to_Euroscope