Skip to content

Commit

Permalink
ci: Add build and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Mar 19, 2024
1 parent b119a88 commit 81ad100
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 ETH Zurich and University of Bologna.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0

name: Test PyFlexFloat library
on: [push, pull_request]

jobs:
test:
name: Build and test package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: pip install .
- name: Test
run: ./test/test.py

0 comments on commit 81ad100

Please sign in to comment.