diff --git a/.github/workflows/appmap-analysis.yml b/.github/workflows/appmap-analysis.yml deleted file mode 100644 index 95a9311..0000000 --- a/.github/workflows/appmap-analysis.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: appmap-analysis - -on: - pull_request: - push: - branches: - - main # Change this to the name of the mainline branch - schedule: - - cron: '0 0 * * 0' - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.ref }} - - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true - - - name: Run tests - run: bundle exec rails test - - - name: Save AppMaps - uses: actions/cache/save@v3 - if: always() - with: - path: tmp/appmap - key: appmaps-${{ github.sha }}-${{ github.run_attempt }} - - appmap-analysis: - if: always() - needs: [test] # You may need to change this to match the name of the step that runs your tests. - uses: getappmap/analyze-action/.github/workflows/appmap-analysis.yml@v1 - permissions: - actions: read - contents: read - checks: write - pull-requests: write \ No newline at end of file diff --git a/.gitignore b/.gitignore index 14d840b..d0d715c 100644 --- a/.gitignore +++ b/.gitignore @@ -37,10 +37,6 @@ # Ignore db test files. db/test.* - -# AppMap artifacts -/.appmap - # Node modules /node_modules diff --git a/Gemfile b/Gemfile index d7d5ed9..55b0796 100644 --- a/Gemfile +++ b/Gemfile @@ -3,8 +3,6 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby "3.1.2" -gem 'appmap', :groups => [:development, :test] - gem "rails", "7.0.4" gem "image_processing", "1.12.2" gem "active_storage_validations", "0.9.8" diff --git a/Gemfile.lock b/Gemfile.lock index 1443351..98c6827 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -74,11 +74,6 @@ GEM addressable (2.8.1) public_suffix (>= 2.0.2, < 6.0) ansi (1.5.0) - appmap (0.102.1) - activesupport - method_source - rack - reverse_markdown autoprefixer-rails (10.4.7.0) execjs (~> 2) aws-eventstream (1.2.0) @@ -314,7 +309,6 @@ PLATFORMS DEPENDENCIES active_storage_validations (= 0.9.8) - appmap aws-sdk-s3 (= 1.114.0) bcrypt (= 3.1.18) bootsnap (= 1.12.0) diff --git a/appmap.yml b/appmap.yml deleted file mode 100644 index cea8de2..0000000 --- a/appmap.yml +++ /dev/null @@ -1,6 +0,0 @@ -name: sample_rails_app -packages: - - path: app - - path: lib -language: ruby -appmap_dir: tmp/appmap