Skip to content

Commit

Permalink
Add missing .yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmronga committed Nov 21, 2022
1 parent 3a291f4 commit c322e51
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_and_test_ubuntu22.04.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Ubuntu 22.04

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build_and_test_22_04:
runs-on: ubuntu-22.04

steps:
# Check out repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Build and install
- name: install
run: sh scripts/full_install.sh
# Run all tests
- name: test
run: |
export LD_LIBRARY_PATH=/usr/local/lib
export PYTHONPATH=/usr/local/lib/python3.10/site-packages
cd wbc
sh scripts/run_tests.sh

0 comments on commit c322e51

Please sign in to comment.