remove colon in Timestamp records #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Quick test | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
version: ["73", "74"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
set -ex | |
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish${{ matrix.version }}/script.deb.sh | sudo bash | |
sudo apt-get install -y cmake gcc jq libcjson-dev python3-docutils varnish varnish-dev | |
cmake -B build | |
cmake --build build/ | |
ctest --test-dir build/ --output-on-failure |