Skip to content

0.13.1

0.13.1 #220

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
rust:
name: deno_cache_dir-${{ matrix.os }}
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install rust
uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Format
if: contains(matrix.os, 'ubuntu')
run: cargo fmt --check
- name: Clippy
if: contains(matrix.os, 'ubuntu')
run: cargo clippy
- name: Test
run: cargo test
- name: Cargo publish
if: |
contains(matrix.os, 'ubuntu') &&
github.repository == 'denoland/deno_cache_dir' &&
startsWith(github.ref, 'refs/tags/')
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish -p deno_cache_dir
deno:
name: deno_cache_dir-deno
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install rust
uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: canary
- name: Format
run: deno fmt --check
- name: Build
run: deno task build
- name: Lint
run: deno lint
- name: Test
run: deno task test
- name: Publish JSR
run: deno run -A jsr:@david/[email protected]