Skip to content

Replaces kSecAttrAccessible with kSecAttrAccessControl #19

Replaces kSecAttrAccessible with kSecAttrAccessControl

Replaces kSecAttrAccessible with kSecAttrAccessControl #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linux:
name: Build (Linux)
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Check Rust styles
run: cargo fmt --check
- name: Lint
run: cargo clippy --workspace -- -D warnings
mac:
name: Build (Mac)
runs-on: macos-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Lint
run: cargo clippy --workspace -- -D warnings
windows:
name: Build (Windows)
runs-on: windows-latest
steps:
- name: Check out source
uses: actions/checkout@v4
- name: Lint
run: cargo clippy --workspace -- -D warnings