Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Update cookie to 0.16 #21

Update cookie to 0.16

Update cookie to 0.16 #21

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
workflow_dispatch:
merge_group:
types: [checks_requested]
jobs:
linux-ci:
name: Linux
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ["stable", "beta", "nightly"]
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Cargo build
run: cargo build --verbose
- name: Cargo test
run: cargo test --verbose
build_result:
name: Result
runs-on: ubuntu-latest
needs:
- "linux-ci"
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"