Skip to content

add lockfiles.yaml + rm and gitignore some unnecessary lockfiles #2

add lockfiles.yaml + rm and gitignore some unnecessary lockfiles

add lockfiles.yaml + rm and gitignore some unnecessary lockfiles #2

Workflow file for this run

name: Roles Lockfile
# Trigger the workflow on push or pull request events for the dev and main branches
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust 1.75.0
uses: actions-rs/toolchain@v1
with:
toolchain: 1.75.0
override: true
- name: Build with locked dependencies
run: cargo build --manifest-path=roles/Cargo.toml --locked