Skip to content

Change example to fall back to not reading a link and restore 1.48 su… #82

Change example to fall back to not reading a link and restore 1.48 su…

Change example to fall back to not reading a link and restore 1.48 su… #82

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test-latest-linux:
name: Test on Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Check
run: make check
- name: Demo
run: ./demo.sh
test-latest-windows:
name: Build on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Check
run: make check
- name: Demo
run: ./demo.bat
test-stable-linux:
name: Test on 1.48.0 Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.48.0
- name: Check
run: make test
test-stable-macos:
name: Test on 1.56.0 macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.56.0
- name: Check
run: make test
test-stable-windows:
name: Test on 1.48.0 Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.48.0
- name: Check
run: make test