aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-10-06 22:23:26 -0700
committerGarrett D'Amore <garrett@damore.org>2024-10-06 22:23:26 -0700
commitd0dc211c7b77a927c1ea315342239b09e5d8c2fe (patch)
tree94975fd9ff87c15d461ffd390dea45c633e07111 /.github/workflows/linux.yml
parent7dd81b3c116127f8eed3dc6f05c62ec36b0097d8 (diff)
downloadnng-d0dc211c7b77a927c1ea315342239b09e5d8c2fe.tar.gz
nng-d0dc211c7b77a927c1ea315342239b09e5d8c2fe.tar.bz2
nng-d0dc211c7b77a927c1ea315342239b09e5d8c2fe.zip
Bump checkout action to v4.
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d7386fd9..c40b65f7 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -1,25 +1,24 @@
name: linux
on: [push, pull_request]
jobs:
-
build:
name: build
- runs-on: [ ubuntu-latest ]
+ runs-on: [ubuntu-latest]
steps:
- - name: Check out code
- uses: actions/checkout@v1
+ - name: Check out code
+ uses: actions/checkout@v4
- - name: Install mbedTLS
- run: sudo apt-get install libmbedtls-dev
+ - name: Install mbedTLS
+ run: sudo apt-get install libmbedtls-dev
- - name: Install ninja
- run: sudo apt-get install ninja-build
+ - name: Install ninja
+ run: sudo apt-get install ninja-build
- - name: Configure
- run: mkdir build && cd build && cmake -G Ninja -D NNG_ENABLE_TLS=ON ..
+ - name: Configure
+ run: mkdir build && cd build && cmake -G Ninja -D NNG_ENABLE_TLS=ON ..
- - name: Build
- run: cd build && ninja
+ - name: Build
+ run: cd build && ninja
- - name: Test
- run: cd build && ctest --output-on-failure \ No newline at end of file
+ - name: Test
+ run: cd build && ctest --output-on-failure