commit 043e693ab3700244c97f50934a9150e72e073385 parent 0a05e006a15b4523d76ec7d51c25cd4487f9179e Author: Marcel <MTRNord@users.noreply.github.com> Date: Tue, 31 Dec 2019 02:14:02 +0100 Create rust.yml Diffstat:
| A | .github/workflows/rust.yml | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -0,0 +1,24 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - 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