Skip to content

Warn that Cephes may overwrite libc symbols #8

Warn that Cephes may overwrite libc symbols

Warn that Cephes may overwrite libc symbols #8

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
toolchain: stable
#deps: sudo apt-get update ; sudo apt install
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
target: ${{ matrix.target }}
toolchain: ${{ matrix.toolchain }}
override: true
- name: Install dependencies
run: ${{ matrix.deps }}
- name: Test
run: |
cargo test --target ${{ matrix.target }}