Skip to content

Add .a and .app files to .gitignore #14

Add .a and .app files to .gitignore

Add .a and .app files to .gitignore #14

Workflow file for this run

name: Rust-CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Run tests
run: cargo test --verbose
- name: rust-audit-check
uses: actions-rs/audit-check@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}