Version 1.4.0 #4
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
# .github/workflows/main.yaml | |
name: "TicketBooth CI: Audit" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
main: | |
name: Bundle Audit | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get update -yqq | |
- run: sudo apt-get install -yqq netcat libpq-dev | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.5' | |
bundler-cache: true | |
- name: Bundle Audit | |
run: | | |
gem install bundle-audit -N | |
bundle audit |