Skip to content

GHA: Update actions/upload-artifact to v4 #22

GHA: Update actions/upload-artifact to v4

GHA: Update actions/upload-artifact to v4 #22

Workflow file for this run

name: Test cashark
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
run: |
sudo apt-get -y update
sudo apt-get -y install tshark
- name: Wireshark Version
run: tshark --version
- name: Test
run: ./test-all.sh
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: cashark-logs
path: '**/*.out'