Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Bump github/codeql-action from 3 to 4 #57

Bump github/codeql-action from 3 to 4

Bump github/codeql-action from 3 to 4 #57

Workflow file for this run

---
name: cooljeanius/LuaBitOp
on:
push:
branches:
- "**/*"
- master
pull_request:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v4.2.0
- run: git clone https://github.com/cooljeanius/LuaDistTools.git ~/_tools
- run: "~/_tools/travis/travis install"
- name: Install dependencies via apt-get
run: |
sudo apt-get -qq update
sudo apt-get -qq install lua5.1 lua5.1-doc liblua5.1-0 \
liblua5.1-0-dbg liblua5.1-0-dev
- run: "~/_tools/travis/travis bootstrap"
- run: export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/local/lib/pkgconfig:${PKG_CONFIG_PATH}
- run: ~/_tools/travis/travis build || (pwd && echo "PKG_CONFIG_PATH is ${PKG_CONFIG_PATH}" && ./configure --with-pic && make)
- run: "~/_tools/travis/travis test || (test -e Makefile && make check && make distcheck)"
- run: test -e Makefile && make check && make distcheck
if: "${{ success() }}"
- run: test -e config.log && cat config.log
if: "${{ failure() }}"
strategy:
matrix:
TOOL:
- gcc
- clang
- i686-w64-mingw32
- x86_64-w64-mingw32
- arm-linux-gnueabihf
# 'allow_failures' transformations are currently unsupported.
env:
TOOL: "${{ matrix.TOOL }}"