Skip to content

build: 👷 update download artifact action to v4 #41

build: 👷 update download artifact action to v4

build: 👷 update download artifact action to v4 #41

Workflow file for this run

name: Rust Dev Branch -> Build & Test
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose