Skip to content

Update README.md

Update README.md #42

Workflow file for this run

on:
push:
branches:
- develop
pull_request:
branches:
- master
workflow_dispatch:
# For quickly detecting important differences in runner configurations
name: linux tests
env:
RELEASE_COMMIT: ${{ github.ref_type == 'tag' }}
PINBOARD_TOKEN: ${{ secrets.PINBOARD_TOKEN }}
jobs:
build_non_fat:
name: Run non-fat tests on ubuntu
runs-on: ubuntu-latest
if: ${{ github.ref_type != 'tag' }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build x86_64 (Debug)
uses: actions-rs/cargo@v1
if: ${{ env.RELEASE_COMMIT != 'true' }}
with:
command: build
- name: Run tests
run: .github/workflows/run_tests.sh ${{ github.workspace }}/target/debug/alfred-pinboard-rs