Skip to content

update github action - stop using deprecated workflows #26

update github action - stop using deprecated workflows

update github action - stop using deprecated workflows #26

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Build
run: cargo build --release --all-features
- name: Test
run: cargo test --release --all-features